Chapter 8: Applications of Triple Integration
Section 8.1: Volume
|
Example 8.1.30
|
|
Use an iterated triple integral to obtain the volume of , the region common to the three cylinders , , .
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
Figure 8.1.30(a) shows the two intersecting cylinders; Figure 8.1.30(b), the actual region ; and Figure 8.1.30(c), one-quarter of the top-half of the region.
>
|
use plots, plottools in
EX8130:=module()
local p1,p2,p3,p4,p5;
export p6;
p1:=cylinder([0,0,-2],1,4,color=red);
p2:=cylinder([0,0,-2],1,4,color=blue);
p3:=cylinder([0,0,-2],1,4,color=green);
p4:=rotate(p2,0,(1/2)*Pi,0);
p5:=rotate(p3,(1/2)*Pi,0,0);
p6:=display(p1,p4,p5,scaling=constrained,labels=[x,y,z],axes=frame,tickmarks=[5,5,5],orientation=[-60,70,0]);
print(p6);
end module:
end use:
|
|
Figure 8.1.30(a) Cylinders
|
|
|
|
|
Figure 8.1.30(b) Region
|
|
|
|
>
|
use plots in
module()
local p1,p2,p3;
p1:=display(EX8130:-p6,view=[0..1,0..1,0..1],axes=box,orientation=[-75,65,0],tickmarks=[2,2,2],axes=frame):
p2:=plot3d([x,x,z],x=0..1/sqrt(2),z=0..sqrt(1-x^2)):
p3:=display(p1,p2,orientation=[-150,80,0],lightmodel=none);
print(p3);
end module:
end use:
|
|
Figure 8.1.30(c) Cut-away
|
|
|
|
|
|
Although the volume of can be found by integrating in Cartesian coordinates, it turns out to be easier to work in cylindrical coordinates, iterating in the order . The complete volume of is then
= ≐ 4.69
Note the consistent coloring through Figures 8.1.30(1 - c). The cylinder , parallel to the -axis, is drawn in blue in Figure 8.1.30(a), and parts of this cylinder appearing in the other two figures are likewise in blue. Similarly with the cylinder , parallel to the -axis, and drawn in green; and with the cylinder , parallel to the -axis, and drawn in red.
The upper bound on the inner integral is expressed in cylindrical coordinates. In Figure 8.1.30(c), the highest point on the blue portion of the surface is directly above the origin. The bounds on are determined from the intersection of the blue and green cylinders by solving the equations and for .
|
|
Maple Solution - Interactive
|
|
Table 8.1.30(a) provides, via a visualization task template, a solution in cylindrical coordinates. The volume found is one-eighth the total volume.
Tools≻Tasks≻Browse:
Calculus - Multivariate≻Integration≻Visualizing Regions of Integration≻Cylindrical
|
Evaluate and Graph
|
Volume Element
|
|
|
|
|
|
|
|
|
|
, where
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Table 8.1.30(a) Solution in cylindrical coordinates via a visualization task template
|
|
|
Table 8.1.30(b) provides, via a task template that implements the MultiInt command from the Student MultivariateCalculus package, a solution in cylindrical coordinates.
Tools≻Tasks≻Browse:
Calculus - Multivariate≻Integration≻Multiple Integration≻Cylindrical
|
Iterated Triple Integral in Cylindrical Coordinates
|
Integrand:
|
|
Region:
|
|
|
|
|
|
|
|
|
|
|
|
|
Inert Integral:
(Note automatic insertion of Jacobian.)
|
>
|
|
| (8) |
|
Value:
|
>
|
|
|
Stepwise Evaluation:
|
>
|
|
| |
|
|
|
|
Table 8.1.30(b) Task template implementation of MultiInt solution in cylindrical coordinates
|
|
|
Table 8.1.30(c) provides a cylindrical-coordinate solution from first principles.
•
|
Calculus palette: Iterated triple integral template
Complete the template as shown to the right.
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
Table 8.1.30(c) From first principles, a solution in cylindrical coordinates
|
|
|
|
|
Maple Solution - Coded
|
|
Table 8.1.30(d) provides, from first principles using the top-level Int and int commands, a solution in cylindrical coordinates.
|
Table 8.1.30(d) From first principles, solutions in Cartesian and cylindrical coordinates.
|
|
|
Table 8.1.30(e) demonstrates the syntax applying the MultiInt command in cylindrical coordinates.
Initialize
|
•
|
Install the Student MultivariateCalculus package.
|
|
|
•
|
Context Panel: Assign Name
|
|
|
Implement the MultiInt command in cylindrical coordinates
|
|
=
|
Table 8.1.30(e) Application of the MultiInt command in cylindrical coordinates
|
|
|
|
|
|
<< Previous Example Section 8.1
Next Section >>
© Maplesoft, a division of Waterloo Maple Inc., 2024. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
|