document.write( "Question 59891: Find the first five outputs of the following recursively defined function:\r
\n" );
document.write( "\n" );
document.write( "f(1)=8,(thats given) f(n+1)=-f(n)+6\r
\n" );
document.write( "\n" );
document.write( "its not really a permutation but i didnt know what category to put it in \n" );
document.write( "
Algebra.Com's Answer #41124 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Find the first five outputs of the following recursively defined function: \n" ); document.write( "f(1)=8,(thats given) f(n+1)=-f(n)+6 \n" ); document.write( "--------------- \n" ); document.write( "f(1)=8 \n" ); document.write( "f(2)=-f(1)+6=-2 \n" ); document.write( "f(3)=-f(2)+6=8 \n" ); document.write( "f(4)=-f(3)+6=-2 \n" ); document.write( "f(5)=-f(4)+6=8 \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |