The following integral can be solved in Mathematica:
Integrate[Exp[a*(z - 1)], {x, y, z}\[Element]Sphere[],Assumptions -> a > 0 && a\[Element]Reals]
Outputs:
But if I change Sphere[] to implicit function, the integral can not be solved:
Integrate[Exp[a*(z - 1)], {x, y, z} \[Element]
ImplicitRegion[x^2 + y^2 + z^2 == 1, {x, y, z}],
Assumptions -> a > 0 && a \[Element] Reals]
Furthermore, can this integral be solved over a spherical cap?


Integrate[Exp[a*(z - 1)], {x, y, z} \[Element] Sphere[], Assumptions -> a <= 0]performs $\frac{4 \pi e^{-a} \sinh (a)}{a}$ too. – user64494 Jun 04 '21 at 14:37