31.3k views
5 votes
What is the recursive function for the function in the table above ?

What is the recursive function for the function in the table above ?-example-1

1 Answer

5 votes

Answer:

f(n) = f(n-1)*3, which is option B

Explanation:

In the table we are given, each value of f(n) is the previous value of f(n)(which is f(n-1)) multiplied by 3.

Because

(108/36)=(36/12)=(12/4) = 3

So the correct answer is:

f(n) = f(n-1)*3, which is option B

User Deadtime
by
5.7k points