I had been trying to compute some integrals numerically over a region defined implicitly and was getting some results that didn't seem to make sense. It is possible that I am using the implicit region definition incorrectly. The following code is a simple example of results that don't seem to make sense. I think I am defining the same region in two different ways and am getting different results when integrating a function over these regions. What is going on?
r0 = Sphere[{0, 0, 0}, 1.0]
r1 = ImplicitRegion[x^2 + y^2 + z^2 <= 1., {x, y, z}]
Sphere[{0, 0, 0}, 1.]
ImplicitRegion[x^2 + y^2 + z^2 <= 1., {x, y, z}]
NIntegrate[(x + y + z)^2, {x, y, z} \[Element] r0]
NIntegrate[(x + y + z)^2, {x, y, z} \[Element] r1]
12.5664
2.51327
Edit: Never mind. I just realized that Sphere is the spherical shell and Ball is the filled sphere.