Raising a square matrix to a power n

1.4k Views Asked by At

I have matrix $A$ of $2 \times 2$ and want to raise it to a power of $n$.

I was thinking about getting $J$, the Jordan form of $A$ and then separating $J$ to two matrices: $S$ (diagonal matrix) and $N$ (nilpotent matrix) and then using the binomial to get $J^n = (S + N)^n$.

Is that the right way of doing it ?

Thanks :)

2

There are 2 best solutions below

1
On BEST ANSWER

If your matrix is diagonalizable we're done (as $\;N=0\;$ in your notation), otherwise we have that

$$\exists\,a\in\Bbb F:=\text{ the definition field}\;\;s.t.\;\;A=P^{-1}JP\;\;\text{and}\;\; J=\begin{pmatrix}a&1\\0&a\end{pmatrix}\;\;\text{(why?)}\;\implies$$

but then it's easy to prove (simple induction) that

$$J^n=\begin{pmatrix}a^n&na^{n-1}\\0&a^n\end{pmatrix}\;,\;\;n\in\Bbb N$$

and certainly

$$A^n=P^{-1}J^nP\;\;\ldots$$

I think the above is simpler than using the decomposition $\;A=J+N\;$ , at least when the matrix order is $\;2\times 2\;$ .

0
On

Hint: Consider diagonalizing the matrix. If this is not possible, then your approach works.