Load
FeynCalc and the necessary add-ons or other packages
description = "Q Qbar -> Mu Amu, QCD, total cross section, tree";
If[ $FrontEnd === Null,
$FeynCalcStartupMessages = False;
Print[description];
];
If[ $Notebooks === False,
$FeynCalcStartupMessages = False
];
$LoadAddOns = {"FeynArts"};
<< FeynCalc`
$FAVerbose = 0;
FCCheckVersion[9, 3, 1];
FeynCalc 10.0.0 (dev version, 2023-12-20 22:40:59 +01:00, dff3b835). For help, use the onlinedocumentation, check out the wiki or visit the forum.
Please check our FAQ for answers to some common FeynCalc questions and have a look at the supplied examples.
If you use FeynCalc in your research, please evaluate FeynCalcHowToCite[] to learn how to cite this software.
Please keep in mind that the proper academic attribution of our work is crucial to ensure the future development of this package!
FeynArts 3.11 (3 Aug 2020) patched for use with FeynCalc, for documentation see the manual or visit www.feynarts.de.
If you use FeynArts in your research, please cite
∙ T. Hahn, Comput. Phys. Commun., 140, 418-431, 2001, arXiv:hep-ph/0012260
Generate Feynman diagrams
Nicer typesetting
MakeBoxes[p1, TraditionalForm] := "\!\(\*SubscriptBox[\(p\), \(1\)]\)";
MakeBoxes[p2, TraditionalForm] := "\!\(\*SubscriptBox[\(p\), \(2\)]\)";
MakeBoxes[k1, TraditionalForm] := "\!\(\*SubscriptBox[\(k\), \(1\)]\)";
MakeBoxes[k2, TraditionalForm] := "\!\(\*SubscriptBox[\(k\), \(2\)]\)";
diags = InsertFields[CreateTopologies[0, 2 -> 2], {F[3, {1}], -F[3, {1}]} ->
{F[2, {2}], -F[2, {2}]}, InsertionLevel -> {Classes}, Model -> "SMQCD",
ExcludeParticles -> {S[_], V[2]}];
Paint[diags, ColumnsXRows -> {2, 1}, Numbering -> Simple,
SheetHeader -> None, ImageSize -> {512, 256}];

Obtain the amplitude
amp[0] = FCFAConvert[CreateFeynAmp[diags], IncomingMomenta -> {p1, p2},
OutgoingMomenta -> {k1, k2}, UndoChiralSplittings -> True, ChangeDimension -> 4,
List -> False, SMP -> True, Contract -> True, DropSumOver -> True,
Prefactor -> 3/2 SMP["e_Q"]]
(k1+k2)2e2eQδCol1Col2(φ(k1,mμ)).γˉLor1.(φ(−k2,mμ))(φ(−p2,mu)).γˉLor1.(φ(p1,mu))
Fix the kinematics
FCClearScalarProducts[];
SetMandelstam[s, t, u, p1, p2, -k1, -k2, SMP["m_u"], SMP["m_u"],
SMP["m_mu"], SMP["m_mu"]];
Square the amplitude
ampSquared[0] = 1/(SUNN^2) (amp[0] (ComplexConjugate[amp[0]])) //
FeynAmpDenominatorExplicit // SUNSimplify[#, Explicit -> True,
SUNNToCACF -> False] & // FermionSpinSum[#, ExtraFactor -> 1/2^2] & //
DiracSimplify // TrickMandelstam[#, {s, t, u, 2 SMP["m_u"]^2 + 2 SMP["m_mu"]^2}] & //
Simplify
Ns22e4eQ2(2mμ4−4mμ2(u−mu2)+2mu4−4umu2+s2+2su+2u2)
ampSquaredMassless[0] = ampSquared[0] // ReplaceAll[#, {SMP["m_u" | "m_mu"] -> 0}] & //
TrickMandelstam[#, {s, t, u, 0}] &
Ns22e4eQ2(t2+u2)
ampSquaredMasslessSUNN3[0] = ampSquaredMassless[0] /. SUNN -> 3
3s22e4eQ2(t2+u2)
Total cross-section
integral = Integrate[Simplify[ampSquaredMasslessSUNN3[0]/(s/4) /.
u -> -s - t], {t, -s, 0}] /. SMP["e"]^4 -> (4 Pi SMP["alpha_fs"])^2
9256π2α2eQ2
prefac = 2 Pi/(128 Pi^2 s)
64πs1
The total cross-section
crossSectionTotal = integral*prefac // PowerExpand // Factor2
9s4πα2eQ2
Check the final results
knownResults = {
(2*(t^2 + u^2)*SMP["e"]^4*SMP["e_Q"]^2)/(3*s^2),
(4*Pi*SMP["alpha_fs"]^2*SMP["e_Q"]^2)/(9*s)
};
FCCompareResults[{ampSquaredMasslessSUNN3[0], crossSectionTotal},
knownResults,
Text -> {"\tCompare to CalcHEP and to Field, Applications of Perturbative QCD, Eq. 5.1.17:",
"CORRECT.", "WRONG!"}, Interrupt -> {Hold[Quit[1]], Automatic}]
Print["\tCPU Time used: ", Round[N[TimeUsed[], 3], 0.001], " s."];
\tCompare to CalcHEP and to Field, Applications of Perturbative QCD, Eq. 5.1.17:CORRECT.
True
\tCPU Time used: 22.751 s.