3.4 Section 1.3. difference equations, characteristic polynomial, simple and repeated roots, analytic solution and stability

  3.4.1 Example simple roots, no repeated roots
  3.4.2 Example simple roots, repeated roots
  3.4.3 Bounded sequence

Given a linear recursive equation such as xn+1=f(xn,xn1,), the goal is to find an non-recursive solution for xn

To do that, we introduce the shift operator E, rewrite the recursive equation in terms of E, we get a polynomial in E which we solve. and depending on how the root come out, we get a solution for xn, which is called the explicit solution.

Notice that the explicit solution gives the value of xn right away as a function of n. No recursion is needed to find x for some specific n, hence one can get numerical problems with the recursive solution due to cancellation errors, while the explicit solution will not show this problem. It is always better to use the explicit solution.

3.4.1 Example simple roots, no repeated roots

xn+1=3xn2xn1E2xn1=3Exn12E0xn1(E23E+2)xn1=0

Solve P(E)=0, we get roots λ1=2,λ2=1, hence simple distinct roots. Hence explicit solution is

xn=A1λ1n+A2λ2n=A12n+A2

Now A1 and A2 can be found from initial conditions

3.4.2 Example simple roots, repeated roots

4xn+7xn1+2xn2xn3=0

P(E)=4E3xn3+7E2xn3+2Exn3E0xn3=0

Hence roots are found from (E+1)2(4E1)=0, so λ1=λ2=1 repeated 2 times, and λ3=14

hence solution is xn=(A1λ1n+A2nλ2n1)+A3λ3n

so it a root is repeated k times, we write

xn=(A1λ1n+A2nλ2n1+A3n(n1)λ3n2++Akn(n1)(n2)(λknk+1))+Ak+1λk+1n

so here we have xn=A1(1)n+A2n(1)n1+A3(14)n

and use I.C. to find the coefficients.

3.4.3 Bounded sequence

   3.4.3.1 Stable solution for the difference equation P(E)x=0

sequence xn=[x1,x2,] is bounded if there is a constant c s.t. |xn|c for all n. i.e. supn|xn|<

3.4.3.1 Stable solution for the difference equation P(E)x=0

P(E)x=0 is stable if all its solutions are stable.

Theorem: polynomial p satisfying P(0)0 the difference equation P(E)x=0 is stable iff all simple roots of p(E)=0 are 1 and all repeated roots are <1

So to find if a recursive equation is stable, find the roots of P(E)=0 and check as per above