Chapter 7: Triple Integration
Section 7.5: Integration in Spherical Coordinates
Example 7.6.5
Use spherical coordinates to integrate the function f=1 over R, the region between the spheres ρ=1 and ρ=2, and above the cone φ=π/3.
(This region was graphed in Example 7.5.7.)
Solution
Mathematical Solution
The graph in Figure 7.6.5(a) was obtained in Example 7.5.7.
Iteration in the order dρ dφ dθ leads to
∫02 π∫0π/3∫12ρ2sinφ ⅆρ ⅆφ ⅆθ = 73⁢π
use plots in module() local p1,p2,p3,p4; p1:=plot3d(1,theta=0..2*Pi,phi=0..Pi/3,coords=spherical); p2:=plot3d(2,theta=0..2*Pi,phi=0..Pi/3,coords=spherical); p3:=plot3d([rho,theta,(1/3)*Pi],rho=1..2,theta=0..2*Pi,coords=spherical); p4:=display(p1,p2,p3,scaling=constrained,axes=frame,labels=[x,y,z],tickmarks=[3,3,3],orientation=[130,75,180],lightmodel=none); print(p4); end module: end use:
Figure 7.6.5(a) The region R
Maple Solution - Interactive
Table 7.6.5(a) provides a solution by a visualization task template.
Tools≻Tasks≻Browse:
Calculus - Multivariate≻Integration≻Visualizing Regions of Integration≻Spherical
Evaluate ∭RΨρ,φ,θ dv and Graph R
Volume Element dv=ρ2sinφ×
dρ dφ dθ
dρ dθ dφ
dφ dρ dθ
dφ dθ dρ
dθ dφ dρ
dθ dρ dφ
, where Ψ=
F=
G=
b=
f=
g=
a=
Table 7.6.5(a) Solution by visualization task template
In Table 7.6.5(a), constrained scaling has been applied to the graph via its Context Panel.
Table 7.6.5(b) provides a solution by a task template that embodies the MultiInt command from the Student MultivariateCalculus package. It iterates in just the order dρ dφ dθ, although the command itself will iterate in any of the six possible orders.
Tools≻Tasks≻Browse: Calculus - Multivariate≻Integration≻Multiple Integration≻Spherical
Iterated Triple Integral in Spherical Coordinates
(φ = colatitude, measured down from z-axis)
Integrand:
1
Region: ρ1φ,θ≤ρ≤ρ2φ,θ,φ1θ≤φ≤φ2θ,a≤θ≤b
ρ1φ,θ
ρ2φ,θ
2
φ1θ
0
φ2θ
π/3
13⁢π
a
b
2 π
2⁢π
Inert Integral: dρ dφ dθ
StudentMultivariateCalculusMultiInt,ρ=..,φ=..,θ=..,coordinates=sphericalρ,φ,θ,output=integral
∫02⁢π∫013⁢π∫12ρ2⁢sin⁡φⅆρⅆφⅆθ
Value:
StudentMultivariateCalculusMultiInt,ρ=..,φ=..,θ=.., coordinates=sphericalρ,φ,θ
73⁢π
Stepwise Evaluation:
StudentMultivariateCalculusMultiInt,ρ=.., φ=..,θ=..,coordinates=sphericalρ,φ,θ,output=steps
∫02⁢π∫0π3∫12ρ2⁢sin⁡φⅆρⅆφⅆθ=∫02⁢π∫0π3ρ3⁢sin⁡φ3ρ=1..2|ρ3⁢sin⁡φ3ρ=1..2ⅆφⅆθ=∫02⁢π∫0π37⁢sin⁡φ3ⅆφⅆθ=∫02⁢π−7⁢cos⁡φ3φ=0..π3|−7⁢cos⁡φ3φ=0..π3ⅆθ=∫02⁢π76ⅆθ=7⁢θ6θ=0..2⁢π|7⁢θ6θ=0..2⁢π
Table 7.6.5(b) Solution by task template that embodies 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⁢π∫013⁢π∫12ρ2⁢sin⁡φⅆρⅆφⅆθ=73⁢π
Table 7.6.5(c) contains a solution from first principles, with the iterated integral being set via the iterated triple-integral template in the Calculus palette.
Calculus palette: Iterated triple-integral template (In the integrand, be sure to include the Jacobian for spherical coordinates.)
Context Panel: Evaluate and Display Inline
∫02 π∫0π/3∫12ρ2sinφ ⅆρ ⅆφ ⅆθ = 73⁢π
Table 7.6.5(c) Solution from first principles
Maple Solution - Coded
Install the Student MultivariateCalculus package.
withStudent:-MultivariateCalculus:
Apply the MultiInt command from the Student MultivariateCalculus package
MultiInt1,ρ=1..2,φ=0..π/3,θ=0..2 π,coordinates=sphericalρ,φ,θ,output=integral
MultiInt1,ρ=1..2,φ=0..π/3,θ=0..2 π,coordinates=sphericalρ,φ,θ
MultiInt1,ρ=1..2,φ=0..π/3,θ=0..2 π,coordinates=sphericalρ,φ,θ,output=steps
Solution via the top-level Int and int commands
Intρ2sinφ,ρ=1..2,φ=0..π/3,θ=0..2 π=intρ2sinφ,ρ=1..2,φ=0..π/3,θ=0..2 π
∫02⁢π∫013⁢π∫12ρ2⁢sin⁡φⅆρⅆφⅆθ=73⁢π
<< Previous Example Section 7.6 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