next up previous
Next: Exercises Up: MA1022 Lab 3 - Previous: Purpose

Background

So far we have used the integral mainly to to compute areas of plane regions. It turns out that the definite integral can also be used to calculate the volumes of certain types of three-dimensional solids. The class of solids we will consider in this lab are called Solids of Revolution because they can be obtained by revolving a plane region about an axis.

As a simple example, consider the graph of the function tex2html_wrap_inline237 for tex2html_wrap_inline263 , which appears in Figure 1.

  figure42
Figure 1:  Plot of tex2html_wrap_inline237 .

If we take the region between the graph and the x-axis and revolve it about the x-axis, we obtain the solid pictured in Figure 2.

  figure47
Figure 2:  Solid generated by rotating tex2html_wrap_inline237 about the x-axis.

To help you in plotting surfaces of revolution, A Maple procedure called revolve has been written. The command used to produce the graphs in Figures 1 and 2 is shown below. The revolve procedure, as well as the RevInt, LeftInt, and LeftDisk procedures described below are all part of the CalcP package, which must be loaded first. The last line in the example below shows the optional argument for revolving the graph of f(x) about the line y=-2 instead of the default y=0.

  > with(CalcP):

  > f := x -> x^2+1;

displaymath245

  > plot(f(x),x=-2..2);

  > revolve(f(x),x=-2..2);

  > revolve(f(x),x=-2..2,y=-2);

The revolve command has other options that you should read about in the help screen. For example, you can speed the command up by only plotting the surface generated by revolving the curve with the nocap argument, and you can also plot a solid of revolution formed by revolving the area between two functions. Try the following examples. (Note: The last example shows how to use revolve with a function defined piecewise.)

  > revolve({f(x),0.5},x=-2..2,y=-1);

  > revolve(cos(x),x=0..4*Pi,y=-2,nocap);

  > revolve({5,x^2+1},x=-2..2);

  > g := x -> if x < 0 then -x +1/2 else x^2-x+1/2 fi ;

g := proc(x) options operator,arrow; if x < 0 then -x+1/2 else 
x^2-x+1/2 fi end

  > revolve('g(x)',x=-1..2);

It turns out that the volume of the solid obtained by revolving the region in Figure 1 between the graph and the x-axis about the x-axis can be determined from the integral

displaymath246

to have the value tex2html_wrap_inline279 . More generally, if you revolve the area under the graph of g(x) for tex2html_wrap_inline283 about the x-axis, the volume is given by

displaymath247

Where does this formula come from? To help you understand it, Two more Maple procedures, RevInt and LeftDisk, have been written. The procedure RevInt sets up the integral for the volume of a solid of revolution, as shown below. The Maple commands evalf and value can be used to obtain a numerical or analytical value.

  > RevInt(f(x),x=-2..2);

displaymath248

  > value(RevInt(f(x),x=-2..2));

displaymath249

  > evalf(RevInt(f(x),x=-2..2));

displaymath250

The integral formula given above for the volume of a solid of revolution comes, as usual, from a limit process. Recall the rectangular approximations we used for plane regions. If you think of taking one of the rectangles and revolving it about the x-axis, you get a disk whose radius is the height h of the rectangle and thickness is tex2html_wrap_inline287 , the width of the rectangle. The volume of this disk is tex2html_wrap_inline289 . If you revolve all of the rectangles in the rectangular approximation about the x-axis, you get a solid made up of disks that approximates the volume of the solid of revolution obtained by revolving the plane region about the x-axis.

To help you visualize this approximation of the volume by disks, the LeftDisk procedure has been written. The syntax for this procedure is similar to that for revolve, except that the number of subintervals must be specified. The examples below produce approximations with five and ten disks. The latter approximation is shown in Figure 3.

  > LeftDisk(f(x),x=-2..2,5);

  > LeftDisk(f(x),x=-2..2,10);

  > LeftInt(f(x),x=-2..2,5);

displaymath251

  > LeftInt(f(x),x=-2..2,10);

displaymath252

The two LeftInt commands above add up the volumes in the disk approximations of the solid of revolution.

  figure142
Figure 3:  Cylindrical approximation with n=10 to the solid generated by rotating tex2html_wrap_inline237 about the x-axis.


next up previous
Next: Exercises Up: MA1022 Lab 3 - Previous: Purpose

Roxanne Tisch
Thu Apr 24 09:03:12 EDT 1997