Integration with branch cuts and singular points

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
elgen
Messages
63
Reaction score
5

Homework Statement


Prove that
[itex]\int_0^{\infty} \frac{x^{1/\alpha}}{x^2-a^2} dx = \frac{\pi}{2a}\frac{a^{1/\alpha}}{\sin(\pi/a)}\left(1-\cos(\pi/\alpha)\right)[/itex] where [itex]a>0[/itex] and [itex]-1<1/\alpha<1[/itex]

Homework Equations


It is apparent that there are two first order singular points at x=a and x=-a. Since [itex]a^{1/\alpha}[/itex] is a multi-valued function, i select the branch cut to start at z=0 and extend along the negative imaginary axis.


The Attempt at a Solution


The contour is the semi-circle in the upper half plane. Applying the Cauchy residue theorem, I conclude that only the arc integrations around the two simple poles contribute to the improper integral. I arrive at
[itex] \int_{-\infty}^{+\infty}\frac{x^{1/\alpha}}{x^2-a^2} dx =-\frac{1}{2} 2\pi i <br /> \left[ <br /> Res(\frac{x^{1/\alpha}}{x^2-a^2},x=-a) <br /> + <br /> Res(\frac{x^{1/\alpha}}{x^2-a^2},x=a) <br /> \right]<br /> = -\frac{1}{2}2\pi i <br /> \left[ <br /> -\frac{1}{2a} a^{1/\alpha} e^{j\pi/\alpha}<br /> +<br /> \frac{1}{2a}a^{1/\alpha}<br /> \right][/itex]
The result on the RHS of the above expression is not a real number.

Any comment on the possible source of error is appreciated.


elgen
 
Physics news on Phys.org
There are some issues with that integral. For starters, just get it working for a simple case:

[tex]\int_0^{\infty} \frac{z^{1/2}}{z^2-4}dz[/tex]

And it has simple poles on both the negative and positive real axis so the integral won't converge in the normal sense but will converge in the principal sense so we should write:

[tex]P.V. \int_0^{\infty} \frac{z^{1/2}}{z^2-4}dz[/tex]

Now, we can still integrate along the negative real axis but will have to indent around the pole at z=-2. Also, in these cases, it's a good idea to get the numeric answer first then check your results to it. So in Mathematica:

Code:
In[7]:=
NIntegrate[Sqrt[x]/(x^2 - 4), {x, 0, 2, Infinity}, 
  Method -> "PrincipalValue"]

Out[7]=
1.1107207345395953

Ok then, does it even agree with that expression you gave above?. Can you set up the integrals to compute it symbolically now?

Edit: Just noticed maybe that's what you were implying above. What do those integrals look like then?
 
Last edited:
Thank you for the pointer. I found out that I did not express the improper integral correctly.

I took
[itex]\int_{-\infty}^{+\infty} \frac{x^{1/\alpha}}{x^2-a^2} dx = 2 \int_{0}^{+\infty} \frac{x^{1/\alpha}}{x^2-a^2} dx[/itex]
which is not correct. The correct way is that
[itex]\int_{-\infty}^{+\infty} \frac{x^{1/\alpha}}{x^2-a^2} dx =<br /> \int_{-\infty}^{0} \frac{x^{1/\alpha}}{x^2-a^2} dx +<br /> \int_{0}^{+\infty} \frac{x^{1/\alpha}}{x^2-a^2} dx<br /> =<br /> \lim_{R\to\infty}\int_0^R \frac{r^{1/\alpha} e^{j\theta/\alpha}}{r^2 e^{j2\theta}-a^2} dr|_{\theta=\pi}<br /> +<br /> \int_{0}^{+\infty} \frac{x^{1/\alpha}}{x^2-a^2} dx<br /> = (1+e^{j\pi/\alpha})\int_{0}^{+\infty} \frac{x^{1/\alpha}}{x^2-a^2} dx[/itex]

Then everything falls off naturally.