1

Struggling to simplify the matrix exponential of the following matrix: $$A = \begin{pmatrix} a & -b \\ b & a \end{pmatrix}$$ It's trivial to observe the eigenvalues are $a±bi$, but the algebra gets pretty involved if I can't figure out how to apply that knowledge. Is there a trick to simplify this exercise?

cryptograthor
  • 409
  • 3
  • 15

2 Answers2

2

Taking advantage of the Cayley-Hamilton theorem as described in this answer, we set $$G=A-aI=\begin{bmatrix}0&-b\\b&0\end{bmatrix}$$ to obtain $$e^{at}\exp(tG) = e^{at}\left((\cos{bt}) I+\frac{\sin{bt}}b G\right) = \begin{bmatrix}e^{at}\cos{bt}&-e^{at}\sin{bt}\\e^{at}\sin{bt}&e^{at}\cos{bt}\end{bmatrix}.$$

If you note the isomorphism between matrices of the form in your question and complex numbers, you might even guess that this would be the solution from the corresponding identity $e^{t(a+ib)} = e^{at}(\cos{bt}+i\sin{bt})$.

amd
  • 55,082
1

Hint: $e^A=Pe^DP^{-1}$

where $D=diag(a+ib,a-ib)$ is diagonal matrix and $P$ is the matrix having the eigenvectors $v_1$ and $v_2$ as its columns. Needless to mention here that $e^D=diag(e^{a+ib}, e^{a-ib})$

Nitin Uniyal
  • 8,108