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

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)=262=13

Thus, the value of x4 is 13.