203k views
3 votes
PLEASE HELP I NEED TO TURN THIS IN TONIGHT! Question

Modify the general recursive function so that it models this situation for n ≥ 2and the initial condition of f(1) = 12.
Enter the correct answer in the box.

PLEASE HELP I NEED TO TURN THIS IN TONIGHT! Question Modify the general recursive-example-1

2 Answers

7 votes

f(n) = 12 * n

This modified recursive function models the situation where the value of f(n) is equal to 12 multiplied by n, starting from the initial condition of f(1) = 12.
User Mavi
by
7.5k points
5 votes

Answer:

f(n)= f( n-1 ) + 6

User Shizzle
by
7.4k points