If $$ A = \begin{bmatrix} 3 & -4 \\ 1 & -1 \end{bmatrix}$$
Then find $A^n$
I have tried solving it using diagonalization $PDP^{-1}$ but I am getting only one independent eigenvector i.e $$ \begin{bmatrix} 2\\ 1 \end{bmatrix}$$ Please tell me the correct method to solve it.
You can split the matrix $A$ into $B+ I$ where $B= \begin{bmatrix} 2 & -4 \\ 1 & -2 \end{bmatrix}$ Now it is interesting to observe that $B^2=O$, the null matrix So using binomial $A^n=(I+B)^n= C^n_0 I^n + C^n_1 I^{n-1} B + C^n_2 I^{n-2} B^2 +\cdots+ C^n_n B^n$ Which simplifies to: $A^n= I + nB$ :)
Note: we are able to use binomial this way because, one of the matrix is identity matrix and the product becomes commutative.