I'd like to find the volume of the region of intersection of the spheres defined by $$x^2+y^2+z^2=4$$ and: $$x^2+y^2+z^2+4x-2y+4z+5=0$$
I tried:
a = ImplicitRegion[
x^2 + y^2 + z^2 + 4 x - 2 y + 4 z + 5 <= 0 &&
x^2 + y^2 + z^2 <= 4, {x, y, z}]
Then I tried:
Volume[a]
But I had to abort.
Any suggestions?


Volumeto finish. It doesn't give an answer. It is very strange that Boole and Integrate work but Volume doesn't. – Szabolcs Sep 09 '16 at 09:13