I have the matrix:
$$A=\begin {pmatrix} 0 &-1\\ 1 & 0\\ \end{pmatrix}$$ And I want to try to calculate its exponential using this formula $$\ e^{M} = \sum_{k=0}^\infty \frac{1}{k!}\ M^{k}\\$$
I have worked out that $$A^{2} = -I$$ $$A^{3}=-A$$ and $$A^{4}=I$$ where $I$ is the identity matrix. I have then tried to use the fact that the sum will cycle through these matrices to separate the sum and then recombine it into one matrix. However what I get out cannot easily be expressed as a sum. Any help would be greatly appreciated!
You have\begin{align}e^A&=\begin{pmatrix}1&0\\0&1\end{pmatrix}+\begin{pmatrix}0&-1\\1&0\end{pmatrix}+\frac12\begin{pmatrix}-1&0\\0&-1\end{pmatrix}+\frac1{3!}\begin{pmatrix}0&1\\-1&0\end{pmatrix}+\frac1{4!}\begin{pmatrix}1&0\\0&1\end{pmatrix}+\cdots\\&=\begin{pmatrix}1-\frac1{2!}+\frac1{4!}-\cdots&-1+\frac1{3!}-\frac1{5!}+\cdots\\1-\frac1{3!}+\frac1{5!}-\cdots&1-\frac1{2!}+\frac1{4!}-\cdots\end{pmatrix}\\&=\begin{pmatrix}\cos(1)&-\sin(1)\\\sin(1)&\cos(1)\end{pmatrix}.\end{align}