document.write( "Question 1041601: Fill in the blank with the tecursive function. Be sure to include the starting point.
\n" );
document.write( "Anna has 100 books she wants to give away at the rate of \"n\" books per week. Write a recursive function that represents the number of books Anna has at anytime.
\n" );
document.write( "The recursive funtion that gives the number of books Anna has at any one time is \n" );
document.write( "
Algebra.Com's Answer #656547 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Fill in the blank with the recursive function. Be sure to include the starting point. \n" ); document.write( "Anna has 100 books she wants to give away at the rate of \"n\" books per week. Write a recursive function that represents the number of books Anna has at anytime. \n" ); document.write( "The recursive funtion that gives the number of books Anna has at any one time is \n" ); document.write( "------- \n" ); document.write( "a(k) = 100 - n*k \n" ); document.write( "--------------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "------------- \n" ); document.write( " |