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

asked
User Ye Wint
by
8.7k points

2 Answers

1 vote
put n=2 ,
f(2+1) = f(2) => f(3) = f(2) = 9
now, put n=1,
f(1+1) = f(1) => f(2) = f(1) = 9
answered
User Mseancole
by
7.9k points
4 votes

Answer: The required value of f(1) is 9.

Step-by-step explanation: Given that a sequence is defined by the following recursive function :


f(n+1)=f(n)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(i)

and f(3) = 9.

We are to find the value of f(1).

Putting n = 2 in equation (i), we have


f(2+1)=f(2)\\\\\Rightarrow f(3)=f(2).

Since f(3) = 9, so we get


f(2)=9.

Again, putting n = 1 in equation (i), we get


f(1+1)=f(1)\\\\\Rightarrow f(2)=f(1).

Since f(2) = 9, so we arrive at


f(1)=9.

Thus, the required value of f(1) is 9.

answered
User Egorlitvinenko
by
8.0k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.