Given a square matrix $M$, I have
$$\exp M = 1 + \sum^{\infty}_{n=1}\frac{M^n}{n!}$$
for the matrix
$$ M = \begin{bmatrix} 0 & 0 & 0\\ 0 & 0 & 1\\ 0 & -1 & 0 \end{bmatrix}$$
and any real number $\theta$, I want to show a)
$$\exp\theta M = 1 + M\sin \theta + M^2 (1-\cos \theta)$$
and hence show that b) $$\exp\theta_1 M \ \exp\theta_2 M = \exp(\theta_1 + \theta_2) M$$
and finally show that c)
$$(\exp\theta M ) ( \exp \theta M)^T = 1$$
Thoughts:
I'm a bit puzzled here since there's an infinity summation. If i let $\theta$ to be in the equation, I think I can get both the sin and cos series approximation? But the thing is these approximations are signed (i.e. they have negative numbers) instead of purely just positive.
Even so, I'm unable to remove the $M^n$ factor. I tried to do a matrix multiplciation of $M^2$ and couldn't find any discernable pattern.
perhaps i need to use fourier series?
Note that $M$ is diagonalizable, i.e., $$ M=P^{-1}\Lambda P, $$ where $$ P=\left( \begin{array}{ccc} 0&-i&1\\ 0&i&1\\ 1&0&0 \end{array} \right),\quad\Lambda=\left( \begin{array}{ccc} -i&0&0\\ 0&i&0\\ 0&0&0 \end{array} \right). $$ Thanks to this result, we have $$ \exp\left(\theta M\right)=\exp\left[P^{-1}\left(\theta\Lambda\right)P\right]=P^{-1}\exp\left(\theta\Lambda\right)P, $$ where $$ \exp\left(\theta\Lambda\right)=\exp\left( \begin{array}{ccc} -i\theta&0&0\\ 0&i\theta&0\\ 0&0&0 \end{array} \right)=\left( \begin{array}{ccc} e^{-i\theta}&0&0\\ 0&e^{i\theta}&0\\ 0&0&1 \end{array} \right). $$