Compute $A^{100 }$ where $A = \begin{bmatrix} 1 &2 \\ 3& 4 \end{bmatrix}$.
I can calculate $A^{100}$ using a calculator, but my question is that is there any short formula/method or is their any trick to find the $A^{100}$?
Compute $A^{100 }$ where $A = \begin{bmatrix} 1 &2 \\ 3& 4 \end{bmatrix}$.
I can calculate $A^{100}$ using a calculator, but my question is that is there any short formula/method or is their any trick to find the $A^{100}$?
On
You can first diagonalize the matrix as follows: $$A=P^{-1}DP,$$ where $P$ is an orthogonal matrix. The matrix $P$ is the matrix of eigenvectors $\{v_1,v_2\}$ that correspond to eigenvalues $\{\lambda_1,\lambda_2\}$ of $A$. Here, $$D=\mathrm{diag}\{\lambda_1,\lambda_2 \}$$
After diagonalizing, you can calculate $A^{100}$ as follows: $$A^{100} = (P^{-1}DP)^{100}=P^{-1}D^{100}P = P^{-1}\mathrm{diag}\{\lambda_1^{100},\lambda_2^{100}\}P. $$
On
The conventional answer is going to be to diagonalize the matrix into $A=P\Lambda P^{-1}$ and then compute $P\Lambda^{100}P^{-1}$, but once you have the eigenvalues $\lambda_1$ and $\lambda_2$ there are ways to do this without computing an eigenbasis:
The above assumes that $A$ has distinct real eigenvalues. If they’re not, you will have to modify the above methods a bit.
On
There is no need for diagonalizations.
The eigenvalues of $$A = \begin{bmatrix} 1 &2 \\ 3& 4 \end{bmatrix}$$ are $$\frac {5\pm\sqrt {33}}{2}$$
Cayley-Hamilton Theorem indicates that $$A^{100}=\alpha A + \beta I.$$
We can find the coefficients $\alpha$ and $\beta $ by equations
$$ \alpha \lambda _1 +\beta = \lambda _1^{100}\\ \alpha \lambda _2 +\beta = \lambda _2^{100}$$ Where $\lambda _1$ and $\lambda _2$ are eighenvalues of $A.$
You could use diagonalization.
Let $A$ be a matrix then if you diagonalize $A$ then you get $A=PBP^{-1}$ with $B$ as a diagonal matrix and $P^{-1}$ an invertible matrix. If you try for $A^2$, then it is equal to $A^2=PB^2P^{-1}$. Similarly for $A^n=PB^nP^{-1}$
$A^{100}=PB^{100}P^{-1}$