-
Hello, I'm trying to set the kinematics of a 2->2 vector boson scattering at amplitude level (no polarisation sum since i am not interested in the square amplitude). Please see the attached file for a short example (one-loop ZZ->ZZ in the SM through a bubble of Higgs boson): the products momenta.momenta are well defined in the argument of the B0 functions but the products polarisation.polarisation are still there (no products momenta.polarisation are present in this example but I am interested on them too). I'm using Mathematica 11.3.0, FeynCalc 9.3.1 and FeynArts 3.11. Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Firstly you have forgotten that the 3 and 4 polarizations are outgoing and therefore complex conjugated. The scalar product declarations should have ComplexConjugate[PolarizationVector[p4]] and same for Using the complex conjugated polarization vectors I still could not get your example to work however and I am not sure why... ScalarProduct[PolarizationVector[p1], PolarizationVector[p2]] = product12; ... etc, by explicit rules for the underlying representation of the scalar products in question: Pair[Momentum[Polarization[p1, I, Transversality -> True], D], Momentum[Polarization[p2, I, Transversality -> True], D]] = product12;
Pair[Momentum[Polarization[p1, I, Transversality -> True], D], Momentum[Polarization[p3, -I, Transversality -> True], D]] = product13; ... etc (note the
ScalarProduct[p1, p1] = SMP["m_Z"]^2;
ScalarProduct[p2, p2] = SMP["m_Z"]^2;
ScalarProduct[p3, p3] = SMP["m_Z"]^2;
ScalarProduct[p4, p4] = SMP["m_Z"]^2;
ScalarProduct[p1, p2] = (ss - 2 SMP["m_Z"]^2)/2;
ScalarProduct[p3, p4] = (ss - 2 SMP["m_Z"]^2)/2;
ScalarProduct[p1, p3] = -(tt - 2 SMP["m_Z"]^2)/2;
ScalarProduct[p2, p4] = -(tt - 2 SMP["m_Z"]^2)/2;
ScalarProduct[p1, p4] = -(uu - 2 SMP["m_Z"]^2)/2;
ScalarProduct[p2, p3] = -(uu - 2 SMP["m_Z"]^2)/2; can be replaced by SetMandelstam[ss, tt, uu, p1, p2, -p3, -p4, SMP["m_Z"], SMP["m_Z"], SMP["m_Z"], SMP["m_Z"]]; |
Beta Was this translation helpful? Give feedback.
Firstly you have forgotten that the 3 and 4 polarizations are outgoing and therefore complex conjugated. The scalar product declarations should have
and same for
p3
.Using the complex conjugated polarization vectors I still could not get your example to work however and I am not sure why...
I am able to get it to work the way I think you intended by replacing the scalar product declarations like
... etc, by explicit rules for the underlying representation of the scalar products in question: