Mathematica : Will not perform integral

  • Context: Mathematica 
  • Thread starter Thread starter Hepth
  • Start date Start date
  • Tags Tags
    Integral Mathematica
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
Science Advisor
Gold Member
Messages
458
Reaction score
40
I wish to integrate:
[tex] \int dE \frac{\sqrt{E^2-m^2}}{E} \log \left(\frac{E-\sqrt{E^2-m^2}}{E+\sqrt{E^2-m^2}} \right)[/tex]

Integrate[ Sqrt[(El - m) (El + m)]/El Log[( (El -Sqrt[(El - ml) (El + ml)])/ (Sqrt[(El - ml) (El + ml)] + El))], El]

But it won't do it. Anyone have any ideas as to why? I've set the assumptions
$Assumptions = ml >= 0 && El >= ml

Is this just an impossible integral? It seems well behaved.
 
Physics news on Phys.org
Hi Hepth,

Just because an integral is well behaved, doesn't mean that it's integrable in a nice closed form. Luckily, for your integral, all Mathematica needs is a little hand holding.

By writing x = ml^2/El^2, you can make the integrand look like

Sqrt[1 - x] Log[(1 - Sqrt[1 - x])/(1 + Sqrt[1 - x])]

This is easily checked in Mma using your assumptions.
The integral of the above integrand is

2/3 (1-x+Log[1-Sqrt[1-x]]-(1-x)^(3/2) Log[(1-Sqrt[1-x])/(1+Sqrt[1-x])]+Log[1+Sqrt[1-x]])

I've attached the notebook to this thread,

Simon
 

Attachments