Chapter 7: Triple Integration
Section 7.4: Integration in Cylindrical Coordinates
Example 7.4.7
Use cylindrical coordinates to integrate the function f=1 over R, the region above z=1+3 x2+3 y2, below 2 x+3 y+ z=11, and inside the cylinder x2+y2=1.
Solution
Mathematical Solution
Figure 7.4.7(a) shows the region R. In cylindrical coordinates, the upper surface of R is
Zr,θ=11−r 2 cosθ+3 sinθ
while the lower surface is zr,θ= 1+3 r2.
The lateral surface is the cylinder whose cross section is a circle of radius 1.
The iteration in the order dz dr dθ is found to be
∫02 π∫01∫ 1+3 r2Zr dz dr dθ=172 π
Figure 7.4.7(a) The region R
Maple Solution - Interactive
In cylindrical coordinates, the upper surface of R is Zr,θ, given by
Context Panel: Assign Name
Z=11−r 2 cosθ+3 sinθ→assign
while the lower surface is zr,θ= 1+3 r2. The lateral surface is the cylinder whose cross section is the circle r=1.
Table 7.4.7(a) provides a solution by a visualization task template. After selecting the order of iteration, the integrand and the fields for the limits of integration are given. The resulting value of the integral and a graph of the region of integration are generated by pressing the appropriate buttons.
Tools≻Tasks≻Browse:
Calculus - Multivariate≻Integration≻Visualizing Regions of Integration≻Cylindrical
Evaluate ∭RΨr,θ,z dv and Graph R
Volume Element dv
r dz dr dθ
r dz dθ dr
r dr dθ dz
r dr dz dθ
r dθ dr dz
r dθ dz dr
, where Ψ=
F=
G=
b=
f=
g=
a=
Table 7.4.7(a) Task template for iterating a triple integral in cylindrical coordinates
Table 7.4.7(b) provides a solution from first principles. Note that the Jacobian, r, must be inserted into the integrand.
Calculus palette: Iterated triple-integral template
Context Panel: Evaluate and Display Inline
∫02 π∫01∫ 1+3 r2Zr ⅆz ⅆr ⅆθ = 172⁢π
Table 7.4.7(b) Solution from first principles
Table 7.4.7(c) provides a solution by a task template that uses the MultiInt command from the Student MultivariateCalculus package, and iterates in the order dz dr dθ. The command takes a coordinate option, and hence, inserts the appropriate Jacobian automatically.
Tools≻Tasks≻Browse: Calculus - Multivariate≻Integration≻Multiple Integration≻Cylindrical
Iterated Triple Integral in Cylindrical Coordinates
Integrand:
1
Region: z1r,θ≤z≤z2r,θ,r1θ≤r≤r2θ,a≤θ≤b
z1r,θ
1+3 r2
3⁢r2+1
z2r,θ
Z
11−r⁢2⁢cos⁡θ+3⁢sin⁡θ
r1θ
0
r2θ
a
b
2 π
2⁢π
Inert Integral: dz dr dθ
(Note automatic insertion of Jacobian.)
StudentMultivariateCalculusMultiInt,z=..,r=..,θ=..,coordinates=cylindricalr,θ,z,output=integral
∫02⁢π∫01∫3⁢r2+111−r⁢2⁢cos⁡θ+3⁢sin⁡θrⅆzⅆrⅆθ
Value:
StudentMultivariateCalculusMultiInt,z=..,r=..,θ=..,coordinates=cylindricalr,θ,z
172⁢π
Stepwise Evaluation:
StudentMultivariateCalculusMultiInt,z=..,r=..,θ=..,coordinates=cylindricalr,θ,z,output=steps
∫02⁢π∫01∫3⁢r2+111−r⁢2⁢cos⁡θ+3⁢sin⁡θrⅆzⅆrⅆθ=∫02⁢π∫01r⁢zz=3⁢r2+1..11−r⁢2⁢cos⁡θ+3⁢sin⁡θ|r⁢zz=3⁢r2+1..11−r⁢2⁢cos⁡θ+3⁢sin⁡θⅆrⅆθ=∫02⁢π∫01r⁢10−r⁢2⁢cos⁡θ+3⁢sin⁡θ−3⁢r2ⅆrⅆθ=∫02⁢π−3⁢r44+−2⁢cos⁡θ−3⁢sin⁡θ⁢r33+5⁢r2r=0..1|−3⁢r44+−2⁢cos⁡θ−3⁢sin⁡θ⁢r33+5⁢r2r=0..1ⅆθ=∫02⁢π174−2⁢cos⁡θ3−sin⁡θⅆθ=17⁢θ4−2⁢sin⁡θ3+cos⁡θθ=0..2⁢π|17⁢θ4−2⁢sin⁡θ3+cos⁡θθ=0..2⁢π
Table 7.4.7(c) Solution by task template that implements the MultiInt command
Initialize
Tools≻Load Package: Student Multivariate Calculus
Loading Student:-MultivariateCalculus
Access the MultiInt command via the Context Panel
Type the integrand, 1.
Context Panel: Student Multivariate Calculus≻Integrate≻Iterated Fill in the fields of the two dialogs shown below.
Context Panel: Evaluate Integral
1→MultiInt∫02⁢π∫01∫3⁢r2+111−r⁢2⁢cos⁡θ+3⁢sin⁡θrⅆzⅆrⅆθ=172⁢π
Maple Solution - Coded
Install the Student MultivariateCalculus package.
withStudent:-MultivariateCalculus:
Define the upper bound Zr,θ.
Z≔11−r 2 cosθ+3 sinθ:
Top-level solution using the Int and int commands
Intr,z= 1+3 r2..Z,r=0..1,θ=0..2 π=intr,z= 1+3 r2..Z,r=0..1,θ=0..2 π
∫02⁢π∫01∫3⁢r2+111−r⁢2⁢cos⁡θ+3⁢sin⁡θrⅆzⅆrⅆθ=172⁢π
Solution via the MultiInt command from the Student MultivariateCalculus package
MultiInt1,z= 1+3 r2..Z,r=0..1,θ=0..2 π,coordinates=cylindrical,output=integral=MultiInt1,z= 1+3 r2..Z,r=0..1,θ=0..2 π,coordinates=cylindrical
MultiInt1,z= 1+3 r2..Z,r=0..1,θ=0..2 π,coordinates=cylindrical,output=steps
<< Previous Example Section 7.4 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
Download Help Document