• Tetra Quark

Integral of the month: $ _{c} $

Math
Published

August 25, 2021

Abstract
Going around a circle!
Keywords

Integral, Residue Calculus, Branch Cut

On this page

  • Dealing with absolute value operations
  • An alternative form

\(\require{cancel}\)

\(\require{cancel}\) \(\def\oot{\frac{1}{2}}\)

We want to compute the integral \(I=\oint_{c} \frac{ |dz|}{|z- \beta|^2}\) where \(|\beta|<1\) and the contour \(c\) is a unit circle centered at the origin. We will show below that the integrand has two poles: one inside the contour and another outside, as shown in Figure 1.

\(\beta\)

Code
circleOfBeta = {
  // Your existing plot div will be created and managed by Observable
  const element = DOM.element('div');
  element.style.width = "100%";
  //element.style.textAlign = "center";
 // element.style.display = "flex";
  //element.style.justifyContent = "center";
  //element.style.alignItems = "center";
  //element.style.height = "600px";  // Add explicit height
  element.style.marginTop = "-30px";
  element.id = "circleOfBeta";
  return element;
}
Figure 1: An interactive plot showing the roots and the vector \(z-\beta\). Change slider to see different cases.

Dealing with absolute value operations

The pesky thing about this integral is the existence of absolute value operations which typically result in square roots of sum of squares. That is a pain in the neck. However, since the contour is just a lovely circle, we can avoid all that. This is because \(z=e^{i\theta}\) and \(z^*=e^{-i\theta}=z^{-1}\). Similarly \(|dz|=|i\,d\theta e^{i\theta}|=|d\theta|=d\theta\). Furthermore, since \(dz=i\,d\theta e^{i\theta}=iz\,d\theta\), we get \(|dz|=d\theta=\frac{dz}{i z}\). Putting it all together, we can get rid of the absolute values \[\begin{equation} I=\oint_{c} \frac{ dz}{iz (z- \beta)(z^*-\beta^*)}=\oint_{c} \frac{ dz}{iz (z- \beta)(z^{-1}-\beta^*)}=\oint_{c} \frac{ dz}{i (z- \beta)(1- \beta^* z)}. \label{eq:fofz} \end{equation}\] Note that if \(\beta=0\), the original integral reduces to \(\oint_{c} d\theta\) or equivalently \(\oint_{c} \frac{ dz}{iz }\), both of which give \(2\pi\). Once we have the final expression for the result, we should get \(2\pi\) as \(\beta\rightarrow 0\). Before we move on, note that the only constraint on \(\beta\) is \(|\beta|<1\). It is not necessarily a real number. However, note the rotational invariance of the integral: if \(\beta\) has an imaginary component, \(\beta= e^{i\alpha} |\beta|\), we can redefine \(z=\tilde z e^{i\alpha}\) and all the phases will disappear due to the absolute values and the invariance of the circle under phase rotations. Therefore, without any loss of generality we could assume \(\beta\) is a real number, or patiently follow through the math to see that \(\beta\) will appear as \(|\beta|\) in the final answer.

The integrand has poles at \(z=\beta\) and \(z=1/\beta^*\). As \(|\beta|<1\), \(1/\beta^*\) will be outside of the circle. Then it is easy to evaluate the integral: \[\begin{equation} I=2\pi i \,\text{Residue}(f(z=\beta))=\frac{2 \pi }{1-|\beta|^2}. \label{eq:result} \end{equation}\]

An alternative form

In most cases such integrals are given as angle integral with integrands having \(\sin\) or \(\cos\) terms in the denominator. Let’s start from the original expression and rewrite it as an angle integral with the change of variable \(z=e^{i\theta}\), which gives \(|z-\beta|^2=(e^{i\theta}-\beta)(e^{-i\theta}-\beta)=1-2\beta \cos\theta+\beta^2\). The integral becomes

\[\begin{equation} I=\int_0^{2\pi} \frac{ d\theta}{1-2\beta \cos\theta+\beta^2}, \label{eq:ftheta} \end{equation}\] and that is the form many problems start from. To solve such a problem, one would just undo the transformation \(e^{i\theta}\equiv z\), and \(\cos\theta=\frac{z+z^{-1}}{2}\) and \(\int_0^{2\pi}d \theta\rightarrow \oint_{c}\frac{dz}{iz}\).

Tetra Quark /index.html

\(e = mC^2\)

No matching items

Integral of the month: $ _{c} $ – Integral of the month: $ _{c} $ – Integral of the month: $ _{c} $ – Going around a circle! Going around a circle!