SOLUTION: Fill in the blank with the tecursive function. Be sure to include the starting point. Anna has 100 books she wants to give away at the rate of "n" books per week. Write a recursiv

Algebra ->  Equations -> SOLUTION: Fill in the blank with the tecursive function. Be sure to include the starting point. Anna has 100 books she wants to give away at the rate of "n" books per week. Write a recursiv      Log On


   



Question 1041601: Fill in the blank with the tecursive function. Be sure to include the starting point.
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.
The recursive funtion that gives the number of books Anna has at any one time is

Answer by stanbon(75887) About Me  (Show Source):
You can put this solution on YOUR website!
Fill in the blank with the recursive function. Be sure to include the starting point.
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.
The recursive funtion that gives the number of books Anna has at any one time is
-------
a(k) = 100 - n*k
---------------------
Cheers,
Stan H.
-------------