Let $A:=\begin{pmatrix} 0 & 1 \\ 1 & 1 \end{pmatrix}$.
I want to find a formula for $A^n$, is there any other way to do that than eigenvalue decomposition?
I tried: $A^2 = \begin{pmatrix} 1 & 1 \\ 1 & 2 \end{pmatrix}$
$A^3 = \begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix}$ $A^4 = \begin{pmatrix} 2 & 3 \\ 3 & 5 \end{pmatrix}$ $A^5 = \begin{pmatrix} 3 & 5\\ 5 & 8 \end{pmatrix}$
However I do not see any pattern here which I could use for induction :/
Edit: ist it
$A^N= \begin{pmatrix} f_{n-1} & f_n \\ f_n & f_{n+1} \end{pmatrix}$ where $f_n$ is the n-th fibonacci number? But how to do induction here? I would be needing the product of $A^n A$.
The Fibonacci sequence satisfies, for $n > 1$, $f_{n} = f_{n-1}+f_{n-2}$. Now, suppose $$A^{n} = \begin{pmatrix} f_{n-1} & f_{n} \\ f_{n} & f_{n+1}\end{pmatrix} $$ for some $n\ge 1$. We have: $$A^{n+1} = A^{n}A = \begin{pmatrix} f_{n-1} & f_{n} \\ f_{n} & f_{n+1}\end{pmatrix} \begin{pmatrix} 0 & 1 \\ 1 & 1 \end{pmatrix} = \begin{pmatrix} f_{n} & f_{n-1}+f_{n} \\ f_{n+1} & f_{n}+f_{n+1}\end{pmatrix}$$ By the recursion formulae $f_{n} = f_{n-1}+f_{n-2}$, we have $f_{n-1}+f_{n} = f_{n+1}$ and also $f_{n}+f_{n+1} = f_{n+2}$. Thus: $$A^{n+1} = \begin{pmatrix} f_{n} & f_{n+1} \\ f_{n+1} & f_{n+2} \end{pmatrix}$$ as desired.