Chapter 6: Applications of Double Integration
Section 6.2: Volume
|
Example 6.2.4
|
|
If and is the region bounded by the graphs of and on the interval , calculate the volume of the region bounded above by the surface that is the graph of and below by the plane . See Example 6.1.4.
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
•
|
The region whose volume is to be computed is shown in Figure 6.2.4(a). The simplest iteration of the double integral that gives the requisite volume takes the integrand as and uses the order . The intersection of and , namely, , must be obtained numerically.
|
≐
•
|
It takes two iterated double integrals to obtain the requisite area because the curves "cross" at .
|
|
>
|
use plots in
module()
local X,p1,p2,p3,F,f,g;
X:=0.5059163080;
F:=3*x^2+2*y^2+1;
f:=arctan(x+1)-1/2;
g:=sin(x);
p1:=shadebetween(0,F,x=0..X,y=g..f,changefill=[transparency=0]);
p2:=shadebetween(0,F,x=X..Pi/2,y=f..g,changefill=[transparency=0]);
p3:=display(p1,p2,orientation=[-160,80,0],axes=frame,labels=[x,y,z],tickmarks=[[0,1],2,4],lightmodel=none);
print(p3);
end module:
end use:
|
|
Figure 6.2.4(a) The volume to be computed
|
|
|
|
|
|
|
|
Maple Solution - Interactive
|
|
Initialize
|
•
|
Context Panel: Assign Name
|
|
|
•
|
Context Panel: Assign name
|
|
|
•
|
Context Panel: Assign name
|
|
|
Obtain the intersections of the curves bounding
|
•
|
Equate and , then press the Enter key.
|
•
|
Context Panel: Solve≻Numerically Solve
|
•
|
Context Panel: Assign to a Name≻
|
|
|
Iterate in the order via the template in the Calculus palette
|
•
|
Calculus palette:
Iterated double-integral template
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
|
|
|
|
Maple Solution - Coded
|
|
Initialize
|
•
|
Install the Student MultivariateCalculus package.
|
|
|
•
|
Define the integrand .
|
|
|
•
|
Define the two bounding curves.
|
|
|
Solve the equation for
|
•
|
Obtain a numeric solution with the fsolve command.
|
|
|
Top-level, using the Int and int commands
|
|
Use the MultiInt command from the Student MultivariateCalculus package
|
=
|
|
Use the MultiInt command with a pre-defined domain option
|
|
|
|
|
|
|
|
<< Previous Example Section 6.2
Next Example >>
© 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
|