Chapter 7: Additional Applications of Integration
Section 7.2: Integration in Polar Coordinates
Example 7.2.7
Working in polar coordinates, calculate the area outside the circle r1=2, but inside the cardioid r2=21+cosθ.
Solution
Mathematical Solution
As per the remark near the bottom of the Essentials section, the requisite area is obtained by evaluating the integral
A=12∫θ1θ2r22−r12 ⅆθ
where θ1=−π/2 and θ2=π/2. The animation in Figure 7.2.3(a) shows that the first-quadrant portion of the cardioid is traced for θ∈0,π/2. The animation in Figure 7.2.7(a) shows the polar element of area sweeping the region r1≤r≤r2 with θ∈−π/2,π/2.
use plots, plottools in module() local R,X1,Y1,X2,Y2,P,P1,P2,G,H,a1,a2; P1 := plot([2,2*(1+cos(theta))], theta = 0 .. 2*Pi, coords = polar,color=black,tickmarks=[3,3]): P2 := textplot({[-1.3,1.2,typeset(r[1])],[3.3,2.2,typeset(r[2])]}); P:=display(P1,P2,scaling=constrained); R := 2*(1+cos(t)): X1 := t->2*cos(t): Y1 := t->2*sin(t): X2 := unapply(R*cos(t), t): Y2 := unapply(R*sin(t), t): G:=proc(t) display(polygon([[X1(t),Y1(t)],[X2(t),Y2(t)],[X2(t+.1),Y2(t+.1)],[X1(t+.1),Y1(t+.1)]],color=red)); end: H:=proc(t) plot([[[0,0],[X1(t),Y1(t)]],[[0,0],[X1(t+.1),Y1(t+.1)]]],style=line, linestyle=dot,color=black): end: a1:=animate(G,[theta],theta=-Pi/2..Pi/2-.1,background=P,frames=62); a2:=animate(H,[theta],theta=-Pi/2..Pi/2-.1,frames=62); print(display(a1,a2)); end module; end use:
Figure 7.2.7(a) Animation: Area outside r1 inside r2
The computation of A proceeds as follows.
12∫−π/2π/221+cosθ2−22 ⅆθ
=2∫−π/2π/22 cosθ+cos2θ ⅆθ
=2∫−π/2π/22 cosθ+1+cos2 θ2 ⅆθ
=22 sinθ+θ2+sin2 θ4−π/2π/2
=24+π2+0
=π+8
Maple Solution
Interactive solution
Expression palette: Definite Integral template
Context Panel: Evaluate and Display Inline
12∫−π/2π/221+cosθ2−22 ⅆθ = π+8
A stepwise solution can be implemented with the tutor, wherein declaring the Sum and Constant Multiple rules as Understood Rules proves useful. (Surprisingly, Maple simplifies the integrand as it loads it into the tutor.)
<< Previous Example Section 7.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
Download Help Document