Integration with branch cuts and singular points

elgen
Messages
63
Reaction score
5

Homework Statement


Prove that
\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) where a>0 and -1<1/\alpha<1

Homework Equations


It is apparent that there are two first order singular points at x=a and x=-a. Since a^{1/\alpha} 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
<br /> \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]<br />
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:

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

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:

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

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
\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
which is not correct. The correct way is that
\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<br />

Then everything falls off naturally.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top