Processing math: 100%
Welcome to Cadabra Q&A, where you can ask questions and receive answers from other members of the community.
+1 vote

Suppose you want to do supersymmetry calculations in 4d with standard gamma matrices. What is the best way to code Γ5 ? One can make it explicit with Γ5Γ0Γ1Γ2Γ3, but is there a way to cope with a suitable new symbol, with its simple properties like {Γ5,Γμ}=0 ?

in General questions by (270 points)

1 Answer

+1 vote

You could use something like this

rules := { \gamma^{\star} -> 1/ 24 \epsilon_{m n p q} \Gamma^{m n p q} };

and then compute, say (γ5)2 as follows

gs_gs := \gamma^{\star} \gamma^{\star};
substitute(gs_gs, rules, repeat=True);
epsilon_to_delta(gs_gs);
expand_delta(gs_gs)
distribute(_)
eliminate_kronecker(_)
canonicalise(_)
collect_terms(_)
join_gamma(_);

Cheers.

by (15.3k points)

Thanks a lot !

...