I am trying to learn more about how to model questions about recurrence relations using matrices. How would one approach the following problem:
"Suppose $y_n$ and $x_n$ satisfy:
$\begin{bmatrix}x_{n}\\y_{n}\end{bmatrix}$ = $\begin{bmatrix}2 & 1\\1 & 1\end{bmatrix}$ $\begin{bmatrix}x_{n-1}\\y_{n-1}\end{bmatrix}$
with $x_0 = y_0 = 1$. What is $\text{lim}_{n \rightarrow \infty} \frac{x_n}{y_n}$ assuming this limit exists?"
I am not used to seeing a recurrence expressed in this way. The author mentions a "standard trick," which I am also unaware of.
As $A = \left( \begin{array}{cc} 2 & 1 \\ 1 & 1 \\ \end{array} \right) = T\cdot\Lambda\cdot T^{-1}$ with $T = \left( \begin{array}{cc}\frac{1}{2} \left(1+\sqrt{5}\right) & \frac{1}{2} \left(1-\sqrt{5}\right) \\ 1 & 1 \\ \end{array} \right)$ and $\Lambda =\left( \begin{array}{cc} \frac{1}{2} \left(3+\sqrt{5}\right) & 0 \\ 0 & \frac{1}{2} \left(3-\sqrt{5}\right) \\ \end{array} \right)$ we have
$$ X_n = T\cdot\Lambda\cdot T^{-1}X_{n-1} $$
or
$$ T^{-1}X_{n} = \Lambda\cdot T^{-1}X_{n-1} $$
now calling $Y_n = T^{-1}X_{n}$ we follow with
$$ Y_n = \Lambda Y_{n-1} $$
with solution
$$ Y_n = \Lambda^n\cdot Y_0 $$
hence
$$ X_n = T\cdot\Lambda^n\cdot T^{-1}X_0 $$
Here $\Lambda^n = \left( \begin{array}{cc} \left(\frac{1}{2} \left(3+\sqrt{5}\right)\right)^n & 0 \\ 0 & \left(\frac{1}{2} \left(3-\sqrt{5}\right)\right)^n \\ \end{array} \right)$