Single-channel Riemann sheets#
The \(T\) function can be extended into the complex plane. This results in \(2^n\) Riemann sheets for \(n\) channels, each starting at the threshold \(s_{thr}=(m_1+m_2)^{2}\) of the two final state particles, the so-called branching point of the respective channel going along the so-called branch cut along the real axis where the function is not uniquely defined to \(+\infty\). This choice of the direction of the brach cut is most commonly used in particle physics. The physical Riemann sheet is defined for positive imaginary part (1st quadrant of the complex plane) and the unphysical Riemann sheets are only defined for negative imaginary part (4th quadrant of the complex plane). For the single-channel case there are two Riemann sheets, one physical and one unphysical.
Phase space factor definitions#
T matrix definition with K matrix#
The dynamical part of the scattering amplitude is calculated via \(K\) matrix formalism. In this report the single-channel case with one resonance pole is assumed.
# @title
n = 1
I = sp.Identity(n)
K = sp.MatrixSymbol("K", n, n)
CM = sp.MatrixSymbol(R"{\rho_{cm}}", n, n)
T1 = (I + sp.I * K * CM).inv() * K
T1
T1_explicit = T1.as_explicit()
T1_explicit[0, 0]
T1_expr = T1_explicit[0, 0].xreplace(definitions_I)
T1_expr.simplify(doit=False)
Calculation of the second Riemann sheet#
Since the \(T\) function is real below the branch cut it can be shown that the discontinuity above and below the threshold reads as:
when \(\epsilon\) goes to zero.
Which leads to:
For the the Amplitude for the second sheet is defined as:
rho = sp.MatrixSymbol("rho", n, n)
T2 = (T1.inv() + 2 * sp.I * rho).inv()
T2
definitions_II = {
**definitions_I,
rho[0, 0]: PhaseSpaceFactor(s, m1, m2),
}
T2_explicit = T2.as_explicit()
T2_expr = T2_explicit[0, 0].xreplace(definitions_II)
T2_expr.simplify(doit=False)
Visualization of the 2 dimensional lineshape#
The Amplitude for the second sheet is only defined for \(s\) positive real part and negative complex part. It inherits the analytic structure of the phasespace factor \(\rho\) (the branch cut starting form zero and from \(s=s_{thr}\) on the real axis). So it is only defined up to the closest branch cut which is in this case the cut at \(s=s_{thr}\).
Visualization of the Riemann sheets#
The lineshape, the part that is observed within the experiment, is given as the intersection of the Riemann sheets with real plane. Also note that the second Riemann sheets transitions smoothly into the first one.
Attention
Not that the second Riemann sheet also inherits the singularity at \(s=0\), as it is derived from the common phasespace factor.