Tell me more ×
Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. It's 100% free, no registration required.

I'd like to calculate the volume of a right circular cone via my way.

If I have a right-triangle with base $D$ and height $H$ then its area is $\frac{1}{2}HD$. Now if we imagine rotating this shape through space about the $z$ axis then we know it will trace out the cone I desire. Appropriate integration will give me this volume: $$\int \frac{1}{2}HD $$

The hard part, obviously, is filling in the details. So I suppose the best place to start is looking at $dx dy dz$, $$\int \int \int \frac{1}{2}HD dx dy dz$$ I'm imagining rotation about the $z$ axis such that $dz =0$ so we can simplify our integration a little: $$\int \int \frac{1}{2}HD dx dy$$ Now how about finding $dx$ and $dy$... If we imagine the following scenario:

enter image description here

then we can obviously approximate $dx = -y d\theta$ and $dy=xd\theta$ but in our case $y=H$ and $D=x$ such that $$\int_0^{2\pi}\int_0^{2\pi} \frac{1}{2}HD (-H d\theta) ( D d\theta)$$ $$\int_0^{2\pi}\int_0^{2\pi} -\frac{1}{2}H^2 D^2 d\theta d\theta $$ but this doesn't seem to work. Can you tell me where I went wrong and how I can fix this so that it will work how I intend?

share|improve this question
Revolving around $z$ doesn't mean that $dz=0$. You still have to add up vertical pieces. If you revolve the triangle, the problem is that various parts are at different distances from the axis. This is why people do shells or disks-the shells are all at the same distance and we know the answer for disks. You can certainly do a 3d integral, but it won't have anything to do with rotation. – Ross Millikan Dec 13 '12 at 20:55
@RossMillikan, Thank you for your comment. I'm a little confused by your comment that a 3d integral won't have to do with rotation. In the case of a finding a rectangle with dimensions $A,B,C$, don't we take $\int_0^C AB dC = ABC$ for the volume? Instead of adding the individual areas along $dc$ can't we just add the individual areas of a triangle around an angle $d\theta$ to get the cone volume? That's what I imagine when I say "rotation" – sciencenewbie Dec 14 '12 at 2:06
If you do a 3d integral the volume of interest is encoded in the limits. So if the radius is $r$ and the height is $h$ the integral is $\int_0^h \int_{-r}^r \int_{\sqrt{r^2-x^2}}^{\sqrt{r^2-x^2}}\; dy \; dx \; dz$ – Ross Millikan Dec 14 '12 at 3:39
In your integral the units aren't right-you have four lengths multiplied together. In polar coordinates you have $r \;d\theta\; dr$ which gives an area. – Ross Millikan Dec 14 '12 at 3:42

1 Answer

up vote 1 down vote accepted

Unless you are pursuing this multiple integral approach for a reason, why not just use the method of disks to compute the volume of the cone? (Video #28 here is a great resource.)

The triangle passes through the point $(0,H)$ and $(D,0)$; the line between these points is $y=-\frac{H}{D}x+H$, or equivalently, $x=-\frac{D}{H}y+D$ (this is the form we will need in a moment).

Then, using the method of disks, the volume of the cone is given by $$V=\int_0^H \pi\cdot(\text{radius})^2\,dy=\int_0^H \pi \left(-\frac{D}{H}y+D\right)^2\,dy=\frac{1}{3}\pi D^2H,$$ which is the well-known formula for the volume of a right circular cone of base radius $D$ and height $H$.

share|improve this answer
Thank you for your comment. I've certainly seen this approach when I took calculus many years ago, but I was hoping to attack it this way as a personal learning experience. – sciencenewbie Dec 14 '12 at 2:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.