Tom K. answered 11/23/20
Knowledgeable and Friendly Math and Statistics Tutor
In order to find a specific solution, as this is a recurrence relationship, you must also be provided with 2 values, for example, a1 and a2
Thus, the answer is none of the above.
We would normally find the eigenvalues of the 1-step transition matrix from (an-1 an) to (an an+1) =
0 1
-1 2
(Note that the bottom row is the recurrence, and the top row carries the value of an from the first vector to the second)
However, when we solve this equation, we get
(0 - λ)(2 - λ) - 1(-1) =0
λ2 - 2λ + 1 =0
(λ - 1)2 = 0
λ = 1
When we have distinct eigenvalues λ1 and λ2 , our solution is
an = Cλ1n + Dλ2n , where C and D are constants that are solved for based upon the initial values
However, when you have 2 eigenvalues that are the same, as in this case, the solution is
an = Cλn + Dnλn (if you had a triple root, you would have an n2 term, for a quadruple root an n3 term added, etc.)
In the case of this specific problem, λ = 1, so our solution is
an = C1n + Dn1n, or
an = C + Dn
This, of course, is an arithmetic progression.
Another way of showing this:
an = 2an-1 - an-2
an - an-1 = 2an-1 - an-2 - an-1
an - an-1 = an-1 - an-2
Our differences are constant, which defines an arithmetic progression.
Now, if we had been given a1 and a2 , D = a2 - a1
Then, as a1 = C + D(1) = C + D
C = a1 - D = a1 - (a2 - a1) = 2a1 - a2
Our solution is an = C + Dn, where C = 2a1 - a2 and D = a2 - a1