I need to evaluate an integral of the form
a/(x**2 + y**2 + a**2)**(3/2) where x, y, and a are Real and a is always positive. The integration limits are x = -a to x = a and y = -a to y = a.
This integral should have a value of 2*pi/3 but SymPy can't seem to evaluate it.
The code integrate(a/(x**2+y**2+a**2)**Rational(3,2),(x,-a,a),(y,-a,a)) gets as far as doing the x integration but can't seem to complete the y integration. Changing Rational(3,2) to just 1.5 helps a tiny bit, but still leave the y integration unresolved.
Is there something I can do to get SymPy to evaluate this integral?