I encountered the following recurrence relation $2x_n-3x_{n-1}+x_{n-2}=0$ with $x_0=1$ $x_1=1$.I did not have any idea how to go about this.However, google pointed me to page 18 of Herbert Wilf's Algorithms and Complexity where he substituted $x_n=\alpha^n$, found a quadratic equation and found a solution to the Fibonnaci sequence using the roots of the quadratic equation.
. It left me with two questions:
1) Why should a general term of the recurrence relation $x_{n+1}=ax_{n}+bx_{n-1}$,($n\ge 1$, $x_0,x_1$ given) be of the form $x_n=\alpha^n$ for some alpha ?
2) Why should $x_n$ be a linear combination of the roots of the the quadratic equation obtained by substituting $x_n=\alpha^n$?