Is this matrix exponentiation method correct?

  • Context: Graduate 
  • Thread starter Thread starter Jhenrique
  • Start date Start date
  • Tags Tags
    Matrix
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
Jhenrique
Messages
676
Reaction score
4
Is correct my step by step below?

[tex] \begin{aligned}<br /> \exp \left (\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix} \right ) &= \exp \left ( a_{11} \begin{bmatrix} 1 & 0 \\ 0 & 0 \\ \end{bmatrix} + a_{22} \begin{bmatrix} 0 & 0 \\ 0 & 1 \\ \end{bmatrix} + a_{12} \begin{bmatrix} 0 & 1 \\ 0 & 0 \\ \end{bmatrix} + a_{21} \begin{bmatrix} 0 & 0 \\ 1 & 0 \\ \end{bmatrix} \right ) \\<br /> & = \exp\left ( \begin{bmatrix} 1 & 0 \\ 0 & 0 \\ \end{bmatrix} \right )^{a_{11}} \exp\left ( \begin{bmatrix} 0 & 0 \\ 0 & 1 \\ \end{bmatrix} \right )^{a_{22}} \exp\left ( \begin{bmatrix} 0 & 1 \\ 0 & 0 \\ \end{bmatrix} \right )^{a_{12}} \exp\left ( \begin{bmatrix} 0 & 0 \\ 1 & 0 \\ \end{bmatrix} \right )^{a_{21}} \\<br /> &= \begin{bmatrix} 1 & 1 \\ 1 & 0 \end{bmatrix}^{a_{11}} \begin{bmatrix} 0 & 1 \\ 1 & 1 \end{bmatrix}^{a_{22}} \begin{bmatrix} 1 & 1 \\ 0 & 1 \end{bmatrix}^{a_{12}} \begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix}^{a_{21}}<br /> \end{aligned}[/tex]
 
Last edited by a moderator:
Physics news on Phys.org
Hi Jhenrique! :smile:

Hint:

i] what is exp##\begin{bmatrix} a & 0 \\ 0 & a \\ \end{bmatrix}## ? what is exp##\begin{bmatrix} 0 & a \\ a & 0 \\ \end{bmatrix}## ?

ii] do your final matrices commute? :wink: