119k views
1 vote
A sequence is defined by the recursive function f(n + 1) = f(n). If f(3) = 9 , what is f(1) ?

1 Answer

4 votes
Assuming that f(n+1) = f(n) is the full recursive definition, and that there are no typos, then this means that the nth term is equal to the (n+1)th term for any n where n is a positive whole number.

So
f(1) = f(2)
f(2) = f(3)
f(3) = 9

By the transitive property, f(1) = f(3) = 9. Therefore the answer is 9.
User Ravikt
by
7.4k points