¡@

Application of Integrals

Volumes by cylindrical Shells

Download Maple Worksheet

Here we consider the problem of finding the volume of the solid S obtained by rotating about the y -axis the region bounded by y = f(x) = 2*x^2-x^3 and y = 0 .

[Maple Plot]

Here is an animation which shows how to generate the solid.

[Maple Plot]

It is difficult to handle this problem by the method introduced previously. Let's take another look of the solid.

[Maple Plot]

The animation above suggests that we may approximate the solid by cylindrical shells.

9 cylindrical shells :

[Maple Plot]

18 cylindrical shells :

[Maple Plot]

27 cylindrical shells :

[Maple Plot]

As we can see from the graphs above that total volume of the cylindrical shells gets closer and closer to the volume of the solid as the cylindrical shells get thinner and thinner.

[Maple Plot]

We divide the interval [0, 2] into n subintervals [x[i-1], x[i]] of equal width Delta*xand let c[i] = (x[i-1]+x[i])/2 . If the rectangle with base [x[i-1], x[i]] and height f(c[i])rotated about the y -axis, then the result is a cylindrical shell S[i] with inner radius x[i-1] , outer radius x[i] and height f(c[i]) as illustrated above. The volume of S[i] is

V[i] = Pi*x[i]^2*f(c[i])-Pi*x[i-1]^2*f(c[i])  

= Pi*(x[i]+x[i-1])*(x[i]-x[i-1])*f(c[i])

                                                        = 2*Pi*c[i]*f(c[i])*Delta*x

 

Therefore, an approximation to the volume of S is given by

 

sum(V[i],i = 1 .. n) = sum(2*Pi*c[i]*f(c[i])*Delta*...

 

This approximation become better as proc (n) options operator, arrow; infinity end proc... . From the definition of an integral, we get

limit(sum(2*Pi*c[i]*f(c[i])*Delta*x,i = 1 .. n),n =...

 

Thus the volume of S is int(2*Pi*x*(2*x^2-x^3),x = 0 .. 2) = 16*Pi/5 .

 

In the same manner, if S is the solid obtained by rotating about the y-axis the region bounded by y = f(x) ( where 0 <= f(x) )y = 0 , x = a , and x = b , then we can get that the volume of S is

int(2*Pi*x*f(x),x = a .. b)

¡@

Let's conclude the methods of finding the volume of a solid of revolution with the following example.

To find the volume of the solid obtained by rotating about the y -axis the region between y = xand y = x^2 .

[Maple Plot]

Note that the intersection of the curves are ( 0, 0 ) and ( 1, 1 ).

 

A picture of the solid is shown below.

[Maple Plot]

[Maple Plot]

The region and a typical shell are shown above. We see that the shell has radius x, and height x-x^2 . So the volume is

int(2*Pi*x*(x-x^2),x = 0 .. 1) = Pi/6

 

 

There is another way of looking at this.

[Maple Plot]

The cross-section perpendicular to y -axis at a distance of y from the origin is an annular ring with inner radius sqrt(y) and outer radius y, so the cross-sectional area is

A(y) = Pi*(sqrt(y)^2-y^2)

Therefore, the volume of the solid is

int(Pi*(y-y^2),y = 0 .. 1) = Pi/6

Download Maple Worksheet