Application of Integrals : Volumes

Download Maple Worksheet

We all know that the volume of a right circular cylinder with radius r and height h is Pi*r^2*h .

[Maple Plot]

 

In general, a solid is called a cylinder (or right cylinder), as illustrated below, is bounded by a plane region B , called the base , and a congruent region B' in a parallel plane.

¡@

[Maple Plot]

If the area of region B is A , then the cylinder has volume A h.

If we consider the cylinder with base {  ( x, y ) | y <= 1-x^2 , x is in [-1, 1]  } and height h as illustrated below :

[Maple Plot]

We know that the area of the base is int(1-x^2,x = -1 .. 1) = 4/3 , so the volume of the solid is 4*h/3 .

 

For a solid S that is not a cylinder we first "cut" S into pieces and approximate each piece by a cylinder. For instance, let's consider the solid illustrated below, which is obtained rotating the region bounded by z = 4-x^2 and z = 0 about the z -axis.

[Maple Plot]

We first "cut" the solid into n thin pieces. ( Click on the animation to see how it goes.)

[Maple Plot]

Since each horizontal cross-section ( the intersection of the solid and a plane) is a circle, we can approximate each piece by a circular cylinder.

n = 10 :

[Maple Plot]

n = 20 :

[Maple Plot]

 

Consider the piece cut by the horizontal plane with height z[i] and z[i]-Delta*z . From the graph above, we see that the radius r of the cross-section at height z is given by r = sqrt(4-z[i]) ( since z = 4-x^2).

[Maple OLE 2.0 Object]

 

So we can approximate the piece by Pi*r^2*Delta*z = Pi*(4-z[i])*Delta*z.   In this way, we get the total volume of all the pieces is given by

sum(Pi*(4-z[i])*Delta*z,i = 1 .. n)

 

The approximation become better and better as proc (n) options operator, arrow; infinity end proc....(  that is, the slices get thinner and thinner )

Therefore the volume of the solid is limit(sum(Pi*(4-z[i])*Delta*z,i = 1 .. n),n = infin... .

 

 

Let S be the solid that lies between x = a and x = b . If the cross-sectional area of S in the plane P[x], through xand perpendicular to the x -axis, is A( x ), where A is a continuous function, then the volume of S is

limit(sum(A(x[i])*Delta*x,i = 1 .. n),n = infinity)...

 

Let's find the volume of a pyramid whose base is a square with side 2 and whose height is 2.

[Maple Plot]

[Maple Plot]

As we can see from the graph above, each cross-section of the pyramid obtained by intersecting the plane

P[z[i]](z = z[i])

is a square whose side a satisfies the equation

a/2 = (2-z[i])/2

Hence the area of the cross-sectional area in P[z] is (2-z)^2 and the volume of the pyramid is

int((2-z)^2,z = 0 .. 2) .

Can you find the volume of a pyramid whose base is a square with side a and whose height is h ?

 

A wedge is cut out of a circular cylinder of radius 4 by two planes. One plane is perpendicular to the axis of the cylinder. The other intersects the first at an angle of 30 degrees along a diameter of the cylinder. What is the volume of the wedge ?

[Maple Plot]

[Maple Plot]

In the graphs above, we see that a cross-section perpendicular to the x -axis at distance x from the origin is a triangle whose base is y = sqrt(16-x^2) and whose height is y*tan(Pi/6) = sqrt(16-x^2)/sqrt(3) .

Thus, the cross-sectional area is A(x) = sqrt(16-x^2)^2/(2*sqrt(3)) and the volume is

int(A(x),x = -4 .. 4) = int((16-x^2)/(2*sqrt(3)),x ... = int((16-x^2)/sqrt(3),x = 0 .. 4) = 128/(3*sqrt(3)) .

 

 

Now let's the solid obtained by rotation the region enclosed by the curvesy = xandy = x^2about the x -axis.  What is the volume of the solid ?

¡@

Here are animations of showing how we can get the solid :

1. The surface obtained by rotating the curve y = x about the x -axis.

[Maple Plot]

2. The surface obtained by rotating the curve y = x^2 about the x -axis.

[Maple Plot]

3. Rotating the region enclosed by the curves y = x and y = x^2 about the x -axis.

[Maple Plot]

Notice the the curves intersect each other at ( 0, 0 ) and ( 1, 1 ).

[Maple Plot]

Here is a picture of the solid.

[Maple Plot]

Here is an animation of the cross-section.

[Maple Plot]

In the animation above, we see that the cross-section in the plane P[x] is an annular ring with inner radius x^2 and outer radius x , so the cross-sectional area is

A(x) = Pi*(x^2-x^4)

Therefore, the volume of the solid is

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

 

If the solid is obtained by rotation the region enclosed by the curves y = x and y = x^2 about y = -1 . What is the volume of the solid ?

 

Here is a picture of the solid.

[Maple Plot]

[Maple Plot]

[Maple Plot]

In the animations above, we see that the cross-section in the plane P[x] is an annular ring with inner radius x^2+1 and outer radius x+1 , so the cross-sectional area is

A(x) = Pi*((x+1)^2-(x^2+1)^2)

Therefore, the volume of the solid is

int(Pi*((x+1)^2-(x^2+1)^2),x = 0 .. 1) = 7*Pi/15 .

Download Maple Worksheet