Calculate Volume of a Portion of Sphere with Given Constraints

cpfoxhunt
Messages
15
Reaction score
0

Homework Statement



Find the volume of the portion of the sphere x^2 + y^2 + z^2 = 4 for which y>1 (or equal to).


Homework Equations



I would like to do this using a triple integral.

The Attempt at a Solution



OK, so I tried integrating the element r^2sin(theta)drd(phi)d(theta) where theta is the angle from the z axis, and theta limits 0 to pi, phi limits 0 to 2pi and r limits 1 to 2 and got 28/3 * pi.

Am I talking utter rubbish?

Cheers
Cpfoxhunt
 
Physics news on Phys.org
In your translation from Cartesian to polar coordinates, your information about the part of the sphere that is cut off (ie that is not included) got lost. The restrictions on y do not translate into the restrictions on the radius that you imposed. If you think about it, by restricting r to be between 1 and 2, you are calculating the volume between two spheres, one of radius 1, and the other of radius 2. That is not the volume you are trying to calculate.
 
You're looking at the portion of the sphere to the "right" (in this picture) of the plane y=1:

http://img138.imageshack.us/img138/2378/sphereplanebt6.th.png

I hope that helps visualize it. Now, to accuarately translate y into spherical polar coordinates, consider a point represented by the vector:

\vec{r} = (r, \theta, \phi)

In my convention, theta is the polar angle, and phi is the azimuthal angle.

The magnitude of the projection onto the xy-plane of this vector is given by:

r\sin{\theta}

By definition, the angle between this projection and the positive x-axis is phi, so that the x and y components of the projection are given by:

x = (r\sin{\theta})\cos \phi
y = (r\sin{\theta})\sin \phi

Your restriction then becomes:

r\sin{\theta}\sin \phi \geq 1

with the added constraint that, for the point to lie within the sphere,

r \leq 2
 
Last edited by a moderator:
Whether you have enough information to translate those constraints into proper limits of integration on the volume integral, I'm not totally sure.
 
Thanks for the help. So I should just apply divergence theorem then? And integrate over the closed surface of the sphere? How would you guys answer the question? I'm currently tying myself in knots over the whole surface and volume integral topic which is annoying because I understood it a few weeks ago.

When I translate into polars I simply multiply by the jacobian r^2sin(theta) right?
 
cpfoxhunt said:

Homework Statement



Find the volume of the portion of the sphere x^2 + y^2 + z^2 = 4 for which y>1 (or equal to).


Homework Equations



I would like to do this using a triple integral.

The Attempt at a Solution



OK, so I tried integrating the element r^2sin(theta)drd(phi)d(theta) where theta is the angle from the z axis, and theta limits 0 to pi, phi limits 0 to 2pi and r limits 1 to 2 and got 28/3 * pi.

Am I talking utter rubbish?

Cheers
Cpfoxhunt
Not utter rubbish but using those limits (I had to think for a moment- you're a physicist and have swapped \theta and \phi from what any self respecting mathematician would use) covers the entire sphere- and the volume of a sphere of radius 2 is (32/3)\pi, not 28/3. But you don't want the entire sphere, only part of it so you don't want to use those limits.

If it were me, I would alter the problem so we wanted the part with z\ge 1. That way the r and phi limits would be the same with theta altered to give only the part with z\ge 1. And since, in polar coordinates z= r cos(\theta) you want theta between 0 and arccos(1/2).
 
Very good point. And yeah, guilty with the swapping the azimuthual with the polar, but thet is apparently the format my exam is going to be in, so I am trying to get used to it.

Cheers for the idea, I like that a lot more.

Chris
 
My brains are clearly falling out of my head, is the answer (8/3)pi? The problem is I don't honestly believe that it is ... using other black arts I get the answer to be 5(pi)/3 but the integration gives 8 ..
 
Last edited:
\int_{\rho= 0}^2\int_{\phi= 0}^{2\pi}\int_{\theta= 0}^{arccos(1/2)} \rho^2 sin^2(\theta) d\rho d\phi d\theta
= \left(\int_{\rho= 0}^2 \rho^2 d\rho\right)\left(\int_{\phi= 0}^{2\pi} d\phi\right)\left(\int_{\theta= 0}^{arccos(1/2)} sin^2(\theta)d\theta\right)
\int_{\rho= 0}^2 \rho^2 d\rho= \frac{8}{3}
\int_{\phi= 0}^{2\pi} d\phi= 2\pi
To integrate sin^2(\theta)d\theta use the trig identity sin^2(\theta)= (1/2)(1+ cos(2\theta))
 
Back
Top