Question
Find a closed form for the recursive sequence $a_0=2, a_1=6$
Original question: 2. A sequence is defined recursively as follows:
Expert Verified Solution
Key concept: This recurrence is the kind that rewards a clean characteristic-equation setup. Once you solve the polynomial, the sequence falls into place quickly.
Step by step
We have
To find a closed form, try a solution of the form
Substitute into the recurrence:
Divide by :
So the characteristic equation is
which factors as
Thus the roots are and .
So the general form is
Use the initial conditions:
For :
For :
Add the equations:
Then
So the sequence is simply
You can check it quickly:
- , and the recurrence gives .
That matches perfectly.
Pitfall alert
A frequent slip is to stop after finding the roots and forget to use both initial values. Another one: writing instead of . The sign matters, especially when checking odd terms.
Try different conditions
If the initial conditions changed, say and , the same characteristic equation would still apply, but the constants and would change. The method stays the same: solve the recurrence polynomial first, then fit the starting values. If the recurrence were non-homogeneous, such as , you would need an extra particular solution.
Further reading
characteristic equation, linear recurrence, closed form
FAQ
What is the closed form of the sequence?
The closed form is a_k = 2\cdot 3^k. It comes from solving the characteristic equation r^2 - 2r - 3 = 0 and using the initial conditions.
Why does the term with (-1)^k disappear?
After applying the initial conditions, the coefficient of (-1)^k is 0, so that part of the general solution vanishes.