Recursive Sequence Problem
Q.5. The terms xn of a sequence follow the rule
xn+1=xn+pxn+q
where p and q are real numbers.
Given that x1=3, x2=5, and x3=7, find the value of x4.
Answer Choices
- −5
- 5
- 517
- 152
- 233
- 9
- 11
- 13
Solution
We are given the recursive rule:
xn+1=xn+pxn+q
We are also given x1=3, x2=5, and x3=7. Using these values, we solve for p and q:
p=−33andq=−9.
Finally, we compute x4 using the recursive formula:
x4=7+(−33)7+(−9)=−26−2=13
Thus, the value of x4 is 13.