How Does Matrix Exponentiation Retrieve Rotation Matrices?

  • Context: Graduate 
  • Thread starter Thread starter gentsagree
  • Start date Start date
  • Tags Tags
    Matrix
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 2K views
gentsagree
Messages
93
Reaction score
1
I need to retrieve a finite rotation matrix (with cos and sin) from the exponentiation of the infinitesimal version of it.

Suppose my infinitesimal matrix is ω. I then compute exp(ω).

My guess would be

[tex]\exp(\omega)=\sum_{k=0}\frac{\omega^{2k}}{2k!}+\sum_{k=0}\frac{\omega^{2k+1}}{(2k+1)!}[/tex]

i.e. the even and odd contributions.

The notes I'm reading suggest instead:

[tex]\exp(\omega)=I+\sum_{k=1}\frac{\omega^{2k}}{2k!}+\sum_{k=1}\frac{\omega^{2k+1}}{(2k+1)!}[/tex]

which looks weird to me; if I take the identity matrix I to be the k=0 contribution of the even part (ω^0=1), then I don't know where the term linear in ω is in the series any more. I think it's not there at all.

Even more: I do need the k=0 contributions later on to retrieve the series expansion expressions for cos and sin.

What do you think? Any comments?
 
Physics news on Phys.org
?? The "linear term in [itex]\omega[/itex]" is the term with [itex]\omega^1[/itex] which means it is the term in the second sum with k= 0: [itex]\frac{\omega^{2(0)+ 1}}{(2(0)+ 1)!}= \omega[/itex].

The linear approximation to [itex]e^\omega[/itex] is [itex]I+ \omega[/itex].