login  home  contents  what's new  discussion  bug reports     help  links  subscribe  changes  refresh  edit

Edit detail for SandBox Idempotent Observers revision 17 of 29

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
Editor: Bill Page
Time: 2014/01/24 00:13:46 GMT+0
Note: Nilpotent operators

added:
possible(%)::Complex Float

Preliminaries

Lorentz Form (metric) applied to a vector (n\times 1 matrix) produces a co-vector (1\times n matrix). Scalar and tensor products use matrix multiplication.

fricas
ID:=diagonalMatrix [1,1,1,1];
Type: Matrix(Integer)
fricas
G:=diagonalMatrix [-1,1,1,1]

\label{eq1}\left[ 
\begin{array}{cccc}
- 1 & 0 & 0 & 0 
\
0 & 1 & 0 & 0 
\
0 & 0 & 1 & 0 
\
0 & 0 & 0 & 1 
(1)
Type: Matrix(Integer)
fricas
Scalar := Expression Integer

\label{eq2}\hbox{\axiomType{Expression}\ } (\hbox{\axiomType{Integer}\ })(2)
Type: Type
fricas
vect(x:List Scalar):Matrix Scalar == matrix map(y+->[y],x)
Function declaration vect : List(Expression(Integer)) -> Matrix( Expression(Integer)) has been added to workspace.
Type: Void
fricas
g(x:Matrix Scalar):Matrix Scalar == transpose(x)*G
Function declaration g : Matrix(Expression(Integer)) -> Matrix( Expression(Integer)) has been added to workspace.
Type: Void
fricas
dot(x:Matrix Scalar,y:Matrix Scalar):Scalar == g(x)*y 
Function declaration dot : (Matrix(Expression(Integer)),Matrix( Expression(Integer))) -> Expression(Integer) has been added to workspace.
Type: Void
fricas
tensor(x:Matrix Scalar,y:Matrix Scalar):Matrix Scalar == x*g(y)
Function declaration tensor : (Matrix(Expression(Integer)),Matrix( Expression(Integer))) -> Matrix(Expression(Integer)) has been added to workspace.
Type: Void

Verification

fricas
htrigs2exp == rule
  cosh(a) == (exp(a)+exp(-a))/2
  sinh(a) == (exp(a)-exp(-a))/2
Type: Void
fricas
sinhcosh == rule
  ?c*exp(a)+?c*exp(-a) == 2*c*cosh(a)
  ?c*exp(a)-?c*exp(-a) == 2*c*sinh(a)
  ?c*exp(a-b)+?c*exp(b-a) == 2*c*cosh(a-b)
  ?c*exp(a-b)-?c*exp(b-a) == 2*c*sinh(a-b)
Type: Void
fricas
expandhtrigs == rule
  cosh(:x+y) == sinh(x)*sinh(y)+cosh(x)*cosh(y)
  sinh(:x+y) == cosh(x)*sinh(y)+sinh(x)*cosh(y)
  cosh(2*x) == 2*cosh(x)^2-1
  sinh(2*x) == 2*sinh(x)*cosh(x)
Type: Void
fricas
expandhtrigs2 == rule
  cosh(2*x+2*y) == 2*cosh(x+y)^2-1
  sinh(2*x+2*y) == 2*sinh(x+y)*cosh(x+y)
  cosh(2*x-2*y) == 2*cosh(x-y)^2-1
  sinh(2*x-2*y) == 2*sinh(x-y)*cosh(x-y)
Type: Void
fricas
Simplify(x:Scalar):Scalar == htrigs sinhcosh simplify htrigs2exp x
Function declaration Simplify : Expression(Integer) -> Expression( Integer) has been added to workspace.
Type: Void
fricas
possible(x)==subst(x, map(y+->(y=(random(100) - random(100))),variables x) )
Type: Void
fricas
is?(eq:Equation Scalar):Boolean == (Simplify(lhs(eq)-rhs(eq))=0)::Boolean
Function declaration is? : Equation(Expression(Integer)) -> Boolean has been added to workspace.
Type: Void
fricas
Is?(eq:Equation(Matrix(Scalar))):Boolean == _
(map(Simplify,lhs(eq)-rhs(eq)) :: Matrix Expression AlgebraicNumber = _
zero(nrows(lhs(eq)),ncols(lhs(eq)))$Matrix Expression AlgebraicNumber )::Boolean
Function declaration Is? : Equation(Matrix(Expression(Integer))) -> Boolean has been added to workspace.
Type: Void

Massive Objects

A material object (also referred to as an observer) is represented by a time-like 4-vector

fricas
P:=vect [p0,p1,p2,p3]
fricas
Compiling function vect with type List(Expression(Integer)) -> 
      Matrix(Expression(Integer))

\label{eq3}\left[ 
\begin{array}{c}
p 0 
\
p 1 
\
p 2 
\
p 3 
(3)
Type: Matrix(Expression(Integer))
fricas
dot(P,P)
fricas
Compiling function g with type Matrix(Expression(Integer)) -> Matrix
      (Expression(Integer))
fricas
Compiling function dot with type (Matrix(Expression(Integer)),Matrix
      (Expression(Integer))) -> Expression(Integer)

\label{eq4}{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}(4)
Type: Expression(Integer)
fricas
solve(%=-1,p0)

\label{eq5}\left[{p 0 ={\sqrt{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+ 1}}}, \:{p 0 = -{\sqrt{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+ 1}}}\right](5)
Type: List(Equation(Expression(Integer)))
fricas
Q:=vect [q0,q1,q2,q3];
Type: Matrix(Expression(Integer))
fricas
S:=1/sqrt(1-s1^2-s2^2-s3^2)*vect [1,-s1,-s2,-s3]

\label{eq6}\left[ 
\begin{array}{c}
{1 \over{\sqrt{-{{s 3}^{2}}-{{s 2}^{2}}-{{s 1}^{2}}+ 1}}}
\
-{s 1 \over{\sqrt{-{{s 3}^{2}}-{{s 2}^{2}}-{{s 1}^{2}}+ 1}}}
\
-{s 2 \over{\sqrt{-{{s 3}^{2}}-{{s 2}^{2}}-{{s 1}^{2}}+ 1}}}
\
-{s 3 \over{\sqrt{-{{s 3}^{2}}-{{s 2}^{2}}-{{s 1}^{2}}+ 1}}}
(6)
Type: Matrix(Expression(Integer))
fricas
dot(S,S)

\label{eq7}- 1(7)
Type: Expression(Integer)
fricas
T:=1/sqrt(1-t1^2-t2^2-t3^2)*vect [1,-t1,-t2,-t3];
Type: Matrix(Expression(Integer))
fricas
U:=vect [cosh(u),sinh(u),0,0]

\label{eq8}\left[ 
\begin{array}{c}
{\cosh \left({u}\right)}
\
{\sinh \left({u}\right)}
\
0 
\
0 
(8)
Type: Matrix(Expression(Integer))
fricas
simplify dot(U,U)

\label{eq9}- 1(9)
Type: Expression(Integer)
fricas
V:=vect [cosh(v),sinh(v),0,0];
Type: Matrix(Expression(Integer))

Massless Photons

A photon is a represented by a light-like null 4-vector

fricas
A:=vect [a0,a0*a1,a0*a2,a0*a3]

\label{eq10}\left[ 
\begin{array}{c}
a 0 
\
{a 0 \  a 1}
\
{a 0 \  a 2}
\
{a 0 \  a 3}
(10)
Type: Matrix(Expression(Integer))
fricas
solve(dot(A,A)=0,a3)

\label{eq11}\left[{a 3 ={\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}, \:{a 3 = -{\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}\right](11)
Type: List(Equation(Expression(Integer)))
fricas
A:=vect [a0,a0*a1,a0*a2,a0*sqrt(1-a1^2-a2^2)]

\label{eq12}\left[ 
\begin{array}{c}
a 0 
\
{a 0 \  a 1}
\
{a 0 \  a 2}
\
{a 0 \ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}
(12)
Type: Matrix(Expression(Integer))
fricas
dot(A,A)

\label{eq13}0(13)
Type: Expression(Integer)
fricas
B:=vect [b0,b0*b1,b0*b2,b0*sqrt(1-b1^2-b2^2)]

\label{eq14}\left[ 
\begin{array}{c}
b 0 
\
{b 0 \  b 1}
\
{b 0 \  b 2}
\
{b 0 \ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}}
(14)
Type: Matrix(Expression(Integer))
fricas
C:=vect [c0,c0*c1,c0*c2,c0*sqrt(1-c1^2-c2^2)]

\label{eq15}\left[ 
\begin{array}{c}
c 0 
\
{c 0 \  c 1}
\
{c 0 \  c 2}
\
{c 0 \ {\sqrt{-{{c 2}^{2}}-{{c 1}^{2}}+ 1}}}
(15)
Type: Matrix(Expression(Integer))

Observer "at rest"

fricas
R:=vect [1,0,0,0]

\label{eq16}\left[ 
\begin{array}{c}
1 
\
0 
\
0 
\
0 
(16)
Type: Matrix(Expression(Integer))
fricas
dot(R,R)

\label{eq17}- 1(17)
Type: Expression(Integer)

Associated with each such vector is the orthogonal 3-d Euclidean subspace E_P =\{x | P \cdot x = 0\}

Relative Velocity

An object P has a unique relative velocity ω(P,Q) with respect to object Q given by

fricas
ω(P,Q)==-P/dot(P,Q)-Q
Type: Void
fricas
map(Simplify, ω(P,Q))
fricas
Compiling function ω with type (Matrix(Expression(Integer)),Matrix(
      Expression(Integer))) -> Matrix(Expression(Integer))
fricas
Compiling body of rule htrigs2exp to compute value of type Ruleset(
      Integer,Integer,Expression(Integer))
fricas
Compiling body of rule sinhcosh to compute value of type Ruleset(
      Integer,Integer,Expression(Integer))
fricas
Compiling function Simplify with type Expression(Integer) -> 
      Expression(Integer)

\label{eq18}\left[ 
\begin{array}{c}
{{-{p 3 \  q 0 \  q 3}-{p 2 \  q 0 \  q 2}-{p 1 \  q 0 \  q 1}+{p 0 \ {{q 0}^{2}}}- p 0}\over{{p 3 \  q 3}+{p 2 \  q 2}+{p 1 \  q 1}-{p 0 \  q 0}}}
\
{{-{p 3 \  q 1 \  q 3}-{p 2 \  q 1 \  q 2}-{p 1 \ {{q 1}^{2}}}+{p 0 \  q 0 \  q 1}- p 1}\over{{p 3 \  q 3}+{p 2 \  q 2}+{p 1 \  q 1}-{p 0 \  q 0}}}
\
{{-{p 3 \  q 2 \  q 3}-{p 2 \ {{q 2}^{2}}}+{{\left(-{p 1 \  q 1}+{p 0 \  q 0}\right)}\  q 2}- p 2}\over{{p 3 \  q 3}+{p 2 \  q 2}+{p 1 \  q 1}-{p 0 \  q 0}}}
\
{{-{p 3 \ {{q 3}^{2}}}+{{\left(-{p 2 \  q 2}-{p 1 \  q 1}+{p 0 \  q 0}\right)}\  q 3}- p 3}\over{{p 3 \  q 3}+{p 2 \  q 2}+{p 1 \  q 1}-{p 0 \  q 0}}}
(18)
Type: Matrix(Expression(Integer))
fricas
map(Simplify, ω(P,R))

\label{eq19}\left[ 
\begin{array}{c}
0 
\
{p 1 \over p 0}
\
{p 2 \over p 0}
\
{p 3 \over p 0}
(19)
Type: Matrix(Expression(Integer))
fricas
map(Simplify, ω(S,T))

\label{eq20}\left[ 
\begin{array}{c}
{{{{t 3}^{2}}-{s 3 \  t 3}+{{t 2}^{2}}-{s 2 \  t 2}+{{t 1}^{2}}-{s 1 \  t 1}}\over{{\left({s 3 \  t 3}+{s 2 \  t 2}+{s 1 \  t 1}- 1 \right)}\ {\sqrt{-{{t 3}^{2}}-{{t 2}^{2}}-{{t 1}^{2}}+ 1}}}}
\
{{-{s 1 \ {{t 3}^{2}}}+{s 3 \  t 1 \  t 3}-{s 1 \ {{t 2}^{2}}}+{s 2 \  t 1 \  t 2}- t 1 + s 1}\over{{\left({s 3 \  t 3}+{s 2 \  t 2}+{s 1 \  t 1}- 1 \right)}\ {\sqrt{-{{t 3}^{2}}-{{t 2}^{2}}-{{t 1}^{2}}+ 1}}}}
\
{{-{s 2 \ {{t 3}^{2}}}+{s 3 \  t 2 \  t 3}+{{\left({s 1 \  t 1}- 1 \right)}\  t 2}-{s 2 \ {{t 1}^{2}}}+ s 2}\over{{\left({s 3 \  t 3}+{s 2 \  t 2}+{s 1 \  t 1}- 1 \right)}\ {\sqrt{-{{t 3}^{2}}-{{t 2}^{2}}-{{t 1}^{2}}+ 1}}}}
\
{{{{\left({s 2 \  t 2}+{s 1 \  t 1}- 1 \right)}\  t 3}-{s 3 \ {{t 2}^{2}}}-{s 3 \ {{t 1}^{2}}}+ s 3}\over{{\left({s 3 \  t 3}+{s 2 \  t 2}+{s 1 \  t 1}- 1 \right)}\ {\sqrt{-{{t 3}^{2}}-{{t 2}^{2}}-{{t 1}^{2}}+ 1}}}}
(20)
Type: Matrix(Expression(Integer))
fricas
map(Simplify, ω(S,R))

\label{eq21}\left[ 
\begin{array}{c}
0 
\
- s 1 
\
- s 2 
\
- s 3 
(21)
Type: Matrix(Expression(Integer))
fricas
map(Simplify, ω(U,V))

\label{eq22}\left[ 
\begin{array}{c}
{{-{\cosh \left({{2 \  v}- u}\right)}+{\cosh \left({u}\right)}}\over{2 \ {\cosh \left({v - u}\right)}}}
\
{{-{\sinh \left({{2 \  v}- u}\right)}+{\sinh \left({u}\right)}}\over{2 \ {\cosh \left({v - u}\right)}}}
\
0 
\
0 
(22)
Type: Matrix(Expression(Integer))

Idempotent Observers

fricas
PP:=tensor(-P,P)
fricas
Compiling function tensor with type (Matrix(Expression(Integer)),
      Matrix(Expression(Integer))) -> Matrix(Expression(Integer))

\label{eq23}\left[ 
\begin{array}{cccc}
{{p 0}^{2}}& -{p 0 \  p 1}& -{p 0 \  p 2}& -{p 0 \  p 3}
\
{p 0 \  p 1}& -{{p 1}^{2}}& -{p 1 \  p 2}& -{p 1 \  p 3}
\
{p 0 \  p 2}& -{p 1 \  p 2}& -{{p 2}^{2}}& -{p 2 \  p 3}
\
{p 0 \  p 3}& -{p 1 \  p 3}& -{p 2 \  p 3}& -{{p 3}^{2}}
(23)
Type: Matrix(Expression(Integer))
fricas
QQ:=tensor(-Q,Q);
Type: Matrix(Expression(Integer))
fricas
RR:=tensor(-R,R)

\label{eq24}\left[ 
\begin{array}{cccc}
1 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
(24)
Type: Matrix(Expression(Integer))
fricas
SS:=map(Simplify,tensor(-S,S))

\label{eq25}\left[ 
\begin{array}{cccc}
-{1 \over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}& -{s 1 \over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}& -{s 2 \over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}& -{s 3 \over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}
\
{s 1 \over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{{s 1}^{2}}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{s 1 \  s 2}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{s 1 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}
\
{s 2 \over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{s 1 \  s 2}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{{s 2}^{2}}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{s 2 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}
\
{s 3 \over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{s 1 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{s 2 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}&{{{s 3}^{2}}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}- 1}}
(25)
Type: Matrix(Expression(Integer))
fricas
Is?(SS*SS=SS)
fricas
Compiling function Is? with type Equation(Matrix(Expression(Integer)
      )) -> Boolean

\label{eq26} \mbox{\rm true} (26)
Type: Boolean
fricas
trace(SS)

\label{eq27}1(27)
Type: Expression(Integer)
fricas
TT:=map(Simplify,tensor(-T,T));
Type: Matrix(Expression(Integer))
fricas
is?(trace(SS*TT)=dot(S,T)^2)
fricas
Compiling function is? with type Equation(Expression(Integer)) -> 
      Boolean

\label{eq28} \mbox{\rm true} (28)
Type: Boolean
fricas
Is?(SS*TT*SS = dot(S,T)^2 * SS)

\label{eq29} \mbox{\rm true} (29)
Type: Boolean
fricas
UU:=map(Simplify,tensor(-U,U))

\label{eq30}\left[ 
\begin{array}{cccc}
{{{\cosh \left({2 \  u}\right)}+ 1}\over 2}& -{{\sinh \left({2 \  u}\right)}\over 2}& 0 & 0 
\
{{\sinh \left({2 \  u}\right)}\over 2}&{{-{\cosh \left({2 \  u}\right)}+ 1}\over 2}& 0 & 0 
\
0 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
(30)
Type: Matrix(Expression(Integer))
fricas
VV:=map(Simplify,tensor(-V,V));
Type: Matrix(Expression(Integer))
fricas
map(Simplify, UU*VV)

\label{eq31}\left[ 
\begin{array}{cccc}
{{{\cosh \left({2 \  v}\right)}+{\cosh \left({{2 \  v}-{2 \  u}}\right)}+{\cosh \left({2 \  u}\right)}+ 1}\over 4}&{{-{\sinh \left({2 \  v}\right)}-{\sinh \left({{2 \  v}-{2 \  u}}\right)}-{\sinh \left({2 \  u}\right)}}\over 4}& 0 & 0 
\
{{{\sinh \left({2 \  v}\right)}-{\sinh \left({{2 \  v}-{2 \  u}}\right)}+{\sinh \left({2 \  u}\right)}}\over 4}&{{-{\cosh \left({2 \  v}\right)}+{\cosh \left({{2 \  v}-{2 \  u}}\right)}-{\cosh \left({2 \  u}\right)}+ 1}\over 4}& 0 & 0 
\
0 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
(31)
Type: Matrix(Expression(Integer))

Nilpotent Operators

fricas
AA:=tensor(-A,A)

\label{eq32}\left[ 
\begin{array}{cccc}
{{a 0}^{2}}& -{{{a 0}^{2}}\  a 1}& -{{{a 0}^{2}}\  a 2}& -{{{a 0}^{2}}\ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}
\
{{{a 0}^{2}}\  a 1}& -{{{a 0}^{2}}\ {{a 1}^{2}}}& -{{{a 0}^{2}}\  a 1 \  a 2}& -{{{a 0}^{2}}\  a 1 \ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}
\
{{{a 0}^{2}}\  a 2}& -{{{a 0}^{2}}\  a 1 \  a 2}& -{{{a 0}^{2}}\ {{a 2}^{2}}}& -{{{a 0}^{2}}\  a 2 \ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}
\
{{{a 0}^{2}}\ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}& -{{{a 0}^{2}}\  a 1 \ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}& -{{{a 0}^{2}}\  a 2 \ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}&{{{{a 0}^{2}}\ {{a 2}^{2}}}+{{{a 0}^{2}}\ {{a 1}^{2}}}-{{a 0}^{2}}}
(32)
Type: Matrix(Expression(Integer))
fricas
BB:=tensor(-B,B)

\label{eq33}\left[ 
\begin{array}{cccc}
{{b 0}^{2}}& -{{{b 0}^{2}}\  b 1}& -{{{b 0}^{2}}\  b 2}& -{{{b 0}^{2}}\ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}}
\
{{{b 0}^{2}}\  b 1}& -{{{b 0}^{2}}\ {{b 1}^{2}}}& -{{{b 0}^{2}}\  b 1 \  b 2}& -{{{b 0}^{2}}\  b 1 \ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}}
\
{{{b 0}^{2}}\  b 2}& -{{{b 0}^{2}}\  b 1 \  b 2}& -{{{b 0}^{2}}\ {{b 2}^{2}}}& -{{{b 0}^{2}}\  b 2 \ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}}
\
{{{b 0}^{2}}\ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}}& -{{{b 0}^{2}}\  b 1 \ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}}& -{{{b 0}^{2}}\  b 2 \ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}}&{{{{b 0}^{2}}\ {{b 2}^{2}}}+{{{b 0}^{2}}\ {{b 1}^{2}}}-{{b 0}^{2}}}
(33)
Type: Matrix(Expression(Integer))
fricas
CC:=tensor(-C,C)

\label{eq34}\left[ 
\begin{array}{cccc}
{{c 0}^{2}}& -{{{c 0}^{2}}\  c 1}& -{{{c 0}^{2}}\  c 2}& -{{{c 0}^{2}}\ {\sqrt{-{{c 2}^{2}}-{{c 1}^{2}}+ 1}}}
\
{{{c 0}^{2}}\  c 1}& -{{{c 0}^{2}}\ {{c 1}^{2}}}& -{{{c 0}^{2}}\  c 1 \  c 2}& -{{{c 0}^{2}}\  c 1 \ {\sqrt{-{{c 2}^{2}}-{{c 1}^{2}}+ 1}}}
\
{{{c 0}^{2}}\  c 2}& -{{{c 0}^{2}}\  c 1 \  c 2}& -{{{c 0}^{2}}\ {{c 2}^{2}}}& -{{{c 0}^{2}}\  c 2 \ {\sqrt{-{{c 2}^{2}}-{{c 1}^{2}}+ 1}}}
\
{{{c 0}^{2}}\ {\sqrt{-{{c 2}^{2}}-{{c 1}^{2}}+ 1}}}& -{{{c 0}^{2}}\  c 1 \ {\sqrt{-{{c 2}^{2}}-{{c 1}^{2}}+ 1}}}& -{{{c 0}^{2}}\  c 2 \ {\sqrt{-{{c 2}^{2}}-{{c 1}^{2}}+ 1}}}&{{{{c 0}^{2}}\ {{c 2}^{2}}}+{{{c 0}^{2}}\ {{c 1}^{2}}}-{{c 0}^{2}}}
(34)
Type: Matrix(Expression(Integer))
fricas
Is?(AA*AA=0*AA)

\label{eq35} \mbox{\rm true} (35)
Type: Boolean
fricas
trace(AA)

\label{eq36}0(36)
Type: Expression(Integer)
fricas
is?(trace(AA*BB)=dot(A,B)^2)

\label{eq37} \mbox{\rm true} (37)
Type: Boolean
fricas
dot(A,B)

\label{eq38}\begin{array}{@{}l}
\displaystyle
{a 0 \  b 0 \ {\sqrt{-{{b 2}^{2}}-{{b 1}^{2}}+ 1}}\ {\sqrt{-{{a 2}^{2}}-{{a 1}^{2}}+ 1}}}+{a 0 \  a 2 \  b 0 \  b 2}+ 
\
\
\displaystyle
{a 0 \  a 1 \  b 0 \  b 1}-{a 0 \  b 0}
(38)
Type: Expression(Integer)
fricas
possible(%)::Complex Float
fricas
Compiling function possible with type Expression(Integer) -> 
      Expression(Integer)

\label{eq39}6781.1006089178_2404(39)
Type: Complex(Float)

Unit

fricas
-(PP*QQ+QQ*PP)+PP+QQ;
Type: Matrix(Expression(Integer))
fricas
2/trace(%)*%;
Type: Matrix(Expression(Integer))
fricas
trace %

\label{eq40}2(40)
Type: Expression(Integer)
fricas
n:=map(Simplify,-(SS*TT+TT*SS)+SS+TT);
Type: Matrix(Expression(Integer))
fricas
Is?(n = (SS-TT)*(SS-TT) )

\label{eq41} \mbox{\rm true} (41)
Type: Boolean
fricas
N:=map(Simplify,2/trace(n)*n);
Type: Matrix(Expression(Integer))
fricas
Simplify trace N

\label{eq42}2(42)
Type: Expression(Integer)
fricas
Is?(N*N=N)

\label{eq43} \mbox{\rm true} (43)
Type: Boolean
fricas
Is?(SS*N=SS)

\label{eq44} \mbox{\rm true} (44)
Type: Boolean
fricas
Is?(TT*N=TT)

\label{eq45} \mbox{\rm true} (45)
Type: Boolean
fricas
Is?(N*SS=SS)

\label{eq46} \mbox{\rm true} (46)
Type: Boolean
fricas
Is?(N*TT=TT)

\label{eq47} \mbox{\rm true} (47)
Type: Boolean

fricas
-(PP*RR+RR*PP)+PP+RR;
Type: Matrix(Expression(Integer))
fricas
2/trace(%)*%

\label{eq48}\left[ 
\begin{array}{cccc}
{{{2 \ {{p 0}^{2}}}- 2}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}& 0 & 0 & 0 
\
0 &{{2 \ {{p 1}^{2}}}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}&{{2 \  p 1 \  p 2}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}&{{2 \  p 1 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}
\
0 &{{2 \  p 1 \  p 2}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}&{{2 \ {{p 2}^{2}}}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}&{{2 \  p 2 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}
\
0 &{{2 \  p 1 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}&{{2 \  p 2 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}&{{2 \ {{p 3}^{2}}}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}+{{p 0}^{2}}- 1}}
(48)
Type: Matrix(Expression(Integer))
fricas
-(SS*RR+RR*SS)+SS+RR;
Type: Matrix(Expression(Integer))
fricas
2/trace(%)*%

\label{eq49}\left[ 
\begin{array}{cccc}
1 & 0 & 0 & 0 
\
0 &{{{s 1}^{2}}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}&{{s 1 \  s 2}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}&{{s 1 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}
\
0 &{{s 1 \  s 2}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}&{{{s 2}^{2}}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}&{{s 2 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}
\
0 &{{s 1 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}&{{s 2 \  s 3}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}&{{{s 3}^{2}}\over{{{s 3}^{2}}+{{s 2}^{2}}+{{s 1}^{2}}}}
(49)
Type: Matrix(Expression(Integer))
fricas
-(UU*RR+RR*UU)+UU+RR;
Type: Matrix(Expression(Integer))
fricas
map(Simplify,2/trace(%)*%)

\label{eq50}\left[ 
\begin{array}{cccc}
1 & 0 & 0 & 0 
\
0 & 1 & 0 & 0 
\
0 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
(50)
Type: Matrix(Expression(Integer))
fricas
-(UU*VV+VV*UU)+UU+VV;
Type: Matrix(Expression(Integer))
fricas
map(Simplify,2/trace(%)*%)

\label{eq51}\left[ 
\begin{array}{cccc}
1 & 0 & 0 & 0 
\
0 & 1 & 0 & 0 
\
0 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
(51)
Type: Matrix(Expression(Integer))

Momentum

fricas
m:=map(x+->factor(numer x)/factor(denom x),-(PP*QQ+QQ*PP)/dot(P,Q)+PP+QQ)

\label{eq52}\left[ 
\begin{array}{cccc}
{{\left(q 0 + p 0 \right)}^{2}}& -{{\left(q 0 + p 0 \right)}\ {\left(q 1 + p 1 \right)}}& -{{\left(q 0 + p 0 \right)}\ {\left(q 2 + p 2 \right)}}& -{{\left(q 0 + p 0 \right)}\ {\left(q 3 + p 3 \right)}}
\
{{\left(q 0 + p 0 \right)}\ {\left(q 1 + p 1 \right)}}& -{{\left(q 1 + p 1 \right)}^{2}}& -{{\left(q 1 + p 1 \right)}\ {\left(q 2 + p 2 \right)}}& -{{\left(q 1 + p 1 \right)}\ {\left(q 3 + p 3 \right)}}
\
{{\left(q 0 + p 0 \right)}\ {\left(q 2 + p 2 \right)}}& -{{\left(q 1 + p 1 \right)}\ {\left(q 2 + p 2 \right)}}& -{{\left(q 2 + p 2 \right)}^{2}}& -{{\left(q 2 + p 2 \right)}\ {\left(q 3 + p 3 \right)}}
\
{{\left(q 0 + p 0 \right)}\ {\left(q 3 + p 3 \right)}}& -{{\left(q 1 + p 1 \right)}\ {\left(q 3 + p 3 \right)}}& -{{\left(q 2 + p 2 \right)}\ {\left(q 3 + p 3 \right)}}& -{{\left(q 3 + p 3 \right)}^{2}}
(52)
Type: Matrix(Fraction(Factored(SparseMultivariatePolynomial?(Integer,Kernel(Expression(Integer))))))
fricas
Is?(m = tensor(-(P+Q),(P+Q)))

\label{eq53} \mbox{\rm true} (53)
Type: Boolean
fricas
factor trace m

\label{eq54}\begin{array}{@{}l}
\displaystyle
-{\left({
\begin{array}{@{}l}
\displaystyle
{{q 3}^{2}}+{2 \  p 3 \  q 3}+{{q 2}^{2}}+{2 \  p 2 \  q 2}+{{q 1}^{2}}+{2 \  p 1 \  q 1}- 
\
\
\displaystyle
{{q 0}^{2}}-{2 \  p 0 \  q 0}+{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}
(54)
Type: Factored(SparseMultivariatePolynomial?(Integer,Kernel(Expression(Integer))))
fricas
M:=1/trace(m)*m::Matrix Scalar;
Type: Matrix(Expression(Integer))
fricas
trace M

\label{eq55}1(55)
Type: Expression(Integer)
fricas
Is?(M*M=M)

\label{eq56} \mbox{\rm true} (56)
Type: Boolean

fricas
(PP*RR+RR*PP)/dot(P,R)-PP-RR;
Type: Matrix(Expression(Integer))
fricas
1/trace(%)*%

\label{eq57}\left[ 
\begin{array}{cccc}
{{-{{p 0}^{2}}-{2 \  p 0}- 1}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{{\left(p 0 + 1 \right)}\  p 1}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{{\left(p 0 + 1 \right)}\  p 2}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{{\left(p 0 + 1 \right)}\  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}
\
{{{\left(- p 0 - 1 \right)}\  p 1}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{{p 1}^{2}}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{p 1 \  p 2}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{p 1 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}
\
{{{\left(- p 0 - 1 \right)}\  p 2}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{p 1 \  p 2}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{{p 2}^{2}}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{p 2 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}
\
{{{\left(- p 0 - 1 \right)}\  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{p 1 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{p 2 \  p 3}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}&{{{p 3}^{2}}\over{{{p 3}^{2}}+{{p 2}^{2}}+{{p 1}^{2}}-{{p 0}^{2}}-{2 \  p 0}- 1}}
(57)
Type: Matrix(Expression(Integer))
fricas
trace %

\label{eq58}1(58)
Type: Expression(Integer)
fricas
--(SS*RR+RR*SS)/dot(S,R)-SS-RR;
--map(Simplify,1/trace(%)*%)
--(UU*VV+VV*UU)/dot(U,V)-UU-VV;
--1/trace(%)*%
(UU*RR+RR*UU)/dot(U,R)-UU-RR;
Type: Matrix(Expression(Integer))
fricas
map(Simplify,1/trace(%)*%)

\label{eq59}\left[ 
\begin{array}{cccc}
{{{\cosh \left({3 \  u}\right)}+{4 \ {\cosh \left({2 \  u}\right)}}+{7 \ {\cosh \left({u}\right)}}+ 4}\over{{4 \ {\cosh \left({2 \  u}\right)}}+{8 \ {\cosh \left({u}\right)}}+ 4}}&{{-{\sinh \left({3 \  u}\right)}-{2 \ {\sinh \left({2 \  u}\right)}}-{\sinh \left({u}\right)}}\over{{4 \ {\cosh \left({2 \  u}\right)}}+{8 \ {\cosh \left({u}\right)}}+ 4}}& 0 & 0 
\
{{{\sinh \left({3 \  u}\right)}+{2 \ {\sinh \left({2 \  u}\right)}}+{\sinh \left({u}\right)}}\over{{4 \ {\cosh \left({2 \  u}\right)}}+{8 \ {\cosh \left({u}\right)}}+ 4}}&{{-{\cosh \left({3 \  u}\right)}+{\cosh \left({u}\right)}}\over{{4 \ {\cosh \left({2 \  u}\right)}}+{8 \ {\cosh \left({u}\right)}}+ 4}}& 0 & 0 
\
0 & 0 & 0 & 0 
\
0 & 0 & 0 & 0 
(59)
Type: Matrix(Expression(Integer))