Passionflower
- 1,543
- 0
Does anybody have a reference or can write out the general (so not just a boost in only one direction) Lorentz matrix in terms of rapidities?
Passionflower said:Does anybody have a reference or can write out the general (so not just a boost in only one direction) Lorentz matrix in terms of rapidities?
Thaakisfox said:Yep, here it is:
\Lambda = \left( \begin{smallmatrix} \pm 1& 0 \\ 0& \pm \textbf{I} \end{smallmatrix} \right)\left( \begin{smallmatrix} \cosh\eta & -\textbf{n}\sinh\eta\\ -\textbf{n}\sinh\eta& \textbf{I}+\textbf{n}\circ\textbf{n}(\cosh\eta -1) \end{smallmatrix} \right)\left( \begin{smallmatrix} 1&0\\ 0&\textbf{R} \end{smallmatrix} \right)
Mentz114 said:That looks useful. I think I can work out what n is. What is R ?
George Jones said:An arbitrary 3x3 (spatial) rotation matrix.
George Jones said:Do you mean a boost in an arbitrary direction, or do you mean an arbitrary (restricted) Lorentz transformation (which is not necessarily a boost)? If you mean the former, look at page 541 of the second edition of Jackson.
JDoolin said:He defines
\begin{matrix}<br /> L = \omega \cdot S - \zeta \cdot K<br /> \\ <br /> A=e^L<br /> \end{matrix}
so that if \omega=(w,0,0) you get a rotation matrix, and if \zeta = (z,0,0) except for one little issue. There's a mysterious lack of imaginary numbers anywhere, but he's still getting cosines and sines when he takes the eL for the \omega part.
It takes a little getting used to, that taking a constant to the power of a matrix gives you a matrix.
Should L be, instead
L = i \omega \cdot S - \zeta \cdot K
or is this hidden in the notation somewhere?
Ben Niehoff said:The cosines and sines come from taking the matrix exponential. Try computing
\exp \begin{pmatrix}0 & -\theta \\ \theta & 0\end{pmatrix}
and see what happens.
S1 = {{0,-Theta}, {Theta, 0}}
A = IdentityMatrix[2] (*When I tried to do the k=0 term, I got a 0^0 error.*)
For[n = 1, n < 6, n = n + 1, (*Technically this should go to n->infinity*)
A = A + S1^n/n!; (*This is apparently the key to doing the matrix exponential*)
Print[MatrixForm[A]]]
Clear["Global`*"]
S = {{0, -T}, {T, 0}};
S0 = {{1, 0}, {0, 1}};
S1 = S
S2 = S.S
S3 = S.S.S
S4 = S.S.S.S
MatrixForm[Expand[S0 + S1 + S2/2 + S3/6 + S4/24]]
TeXForm[MatrixForm[Expand[S0 + S1 + S2/2 + S3/6 + S4/24]]]
JDoolin said:The software I am using is not doing Matrix multiplication correctly when I take S1n. It is just multiplying term by term.