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

B) 3
C) 27
D) 81

2 Answers

5 votes
A sequence is defined by the recursive function f(n + 1) = f(n). If f(3) = 9 , what is f(1) ? A) 1
User Marcusnjones
by
8.3k points
3 votes

Answer: The answer is 9.

Explanation:

Since f(n+1) = f(n)

If n= 1

f(2) = f(1)

if n= 2

f(3) = f(2) = 9 {since f(3) is 9}

Since f(2) is now 9 and f(2) = f(1), therefore f(1) will also be 9.

No answer!

User Ayesha
by
8.1k points