2

How do I calculate $$\int_{-\infty}^{\infty} \frac{dw}{1+iw^3}$$ using complex path integrals?

I just need a hint on how to start, not the actual computation, because I need to understand how to deal with similar questions.

Edit: Following @Tavish's comments, I used the residue theorem:

The function has poles at $w=\pm 0.866 +0.5i$ and $w=i$. Now the integral is equal to $$2\pi i [Res(f,0.866 +0.5i)+Res(f,-0.866 +0.5i)]=\frac{2\pi}3.$$

However, I'm more interested in understanding the steps here than finding the answer. For example, how does one know which contour to take? Moreover, is there an alternate way to find this integral?

Guest
  • 1,545

2 Answers2

2

Consider the integral $$\int_{-\infty}^\infty \frac{dw}{p(w)},$$ where $p(w)$ is a polynomial of degree $\ge 2$. If $p(w)$ has no poles on the real axis (this can be dealt with later), then consider the function $\displaystyle f(z) = \frac{1}{p(z)}$ integrated along the contour consisting of a segment on the real axis from $-R$ to $R$ and closed in the upper half plane by a semicircle of radius $R$. As $R\to \infty$, $\int_{\Gamma_R} f(z)\,dz$ can easily be shown to go to zero, and thus

$$\int_{-\infty}^\infty \frac{dw}{p(w)} = 2\pi i\sum_{z_j \in \text{zeros of }{p(z)}\text{ in upper half plane}} \text{res}_{z=z_j} f(z).$$

If you like, you could just as easily complete the contour in the lower half plane.

On the semicircle, eventually, for large enough $R$,

$$\left| \int_{\Gamma_R} f(z) \, dz \right| \le \int_0^\pi \left|\frac{R i e^{i\theta}}{a_n R^n-a_{n-1}R^{n-1}- \cdots- a_0}\right|\,d\theta \le \int_0^\pi \frac{R }{\frac{a_n}{2} R^n}\,d\theta =\frac{2\pi}{a_n R^{n-1}} \to 0.$$

mjw
  • 8,647
  • 1
  • 8
  • 23
  • In your particular case, $p(z)=1+iw^3$ and the equation $p(z)=0$ has roots $w^3=-i$ or $w^3 = e^{-i\pi/2 + 2\pi i k}, \quad k\in { 0,1,2} ,,, \Rightarrow ,,, w = e^{-i\pi/6 + 2\pi i k/3}.$ – mjw Jul 21 '21 at 23:03
1

I would recommend to implement some transformations of the integral first.

For example, $$I=\int_{-\infty}^\infty\frac{dw}{1+iw^3}=-i\int_{-\infty}^\infty\frac{dw}{w^3-i}=-i\int_{0}^\infty\frac{dw}{1+iw^3}-i\int_{-\infty}^0\frac{dw}{1+iw^3}$$ Making change in the second integral $t=-w$ $$I=-i\Big(\int_{0}^\infty\frac{dw}{w^3-i}-\int_{0}^\infty\frac{dw}{w^3+i}\Big)=2\int_{0}^\infty\frac{dw}{w^6+1}$$ Now, we can go different ways.

For example, this one: $$I=2\int_{0}^\infty\frac{w^5dw}{w^5(w^6+1)}=\frac{2}{6}\int_{0}^\infty\frac{d(w^6)}{w^5(w^6+1)}=\frac{1}{3}\int_{0}^\infty\frac{t^{-5/6}}{(t+1)}dt$$ Taking a keyhole contour in the complex plane with the cut from zero along the positive part of axis $X$ (we need it to make the function single-valued).

enter image description here

Integral along a big circle $\to0$ as $R\to \infty$ (function decreases rapidly enough). Also, integral along a small circle (around zero) $\to0$ as $r\to0$.

Integral along the upper bank of the cut is the desired integral $I= \frac{1}{3}\int_0^\infty\frac{z^{-5/6}}{z+1}dx$

And integral along the lower bank of the cut is integral $-Ie^{2\pi i(-5/6)}$ (minus is due to integration in the negative direction, and the factor $e^{2\pi i(-5/6)}$ - due to the full turn counter-clockwise around the branch point $z=0$)

You will get $I(1-e^{2\pi i(-5/6)})=2\pi i \,Res _{(z=e^{\pi i})}\frac{1}{3}\frac{z^{-5/6}}{z+1}=\frac{2\pi i}{3}e^{-5\pi i/6}$ - residual in one simple pole inside the contour.

Finally, $$I=\frac{1}{3}\frac{2\pi i}{e^{5\pi i/6}-e^{-5\pi i/6}}=\frac{\pi}{3\sin(5\pi/6)}=\frac{2\pi}{3}$$

In another way we can evaluate this integral via beta-function. Making change $x=\frac{1}{1+t}$ $$I=\frac{1}{3}\int_{0}^\infty\frac{t^{-5/6}}{(t+1)}dt=\frac{1}{3}\int_0^1\frac{(1-x)^{-5/6}x}{x^{-5/6}x^2}dx=\frac{1}{3}\int_0^1(1-x)^{-5/6}x^{-1/6}dx$$ $$=B\big(1/6;5/6\big)=\frac{\Gamma(1/6)\Gamma(5/6)}{\Gamma(1/6+5/6)}$$ Using Euler reflection formula $\Gamma(x)\Gamma(1-x)=\frac{\pi}{\sin(\pi x)}$ $$I=\frac{1}{3}\frac{\pi}{\sin(5/6)}=\frac{2\pi}{3}$$

Svyatoslav
  • 15,657