Chapter 5: Double Integration
Section 5.7: Double Integration in Polar Coordinates
|
Essentials
|
|
•
|
When Cartesian coordinates are changed to polar coordinates, the points in the Cartesian plane remain where they are, and their "names" simply change. Thus, a Cartesian curve expressed in polar coordinates by does not change shape or location. Just its representation changes.
|
•
|
The recipe prescribes the new name for each Cartesian point. This is what Figure 5.7.1 shows. The concentric circles and polar rays of polar coordinates are superimposed on the Cartesian plane, so objects retain their location and shape. Just their descriptions change.
|
|
>
|
use plots, plottools in
module()
local P1,P2,P3,P4,f,a,k;
P1:=plot([seq([a,t,t=0..2*Pi],a=1..5)],color=green):
P2:=plot([seq(k*Pi/6,k=0..12)],x=1..5,color=red):
P3:=display(P1,P2,scaling=constrained,view=[0..6,0..2*Pi],labels=[r,typeset(theta)]):
f:=transform((x,y)->[x*cos(y),x*sin(y)]):
P4:=display(f(P3),labels=[x,y],axis=[gridlines=[linestyle=dot]],tickmarks=[spacing(1),spacing(1)],labelfont=[default,12]):
print(P4);
end module:
end use:
|
|
Figure 5.7.1 Polar coordinates
|
|
|
|
|
|
•
|
When the change to polar coordinates is viewed as a transformation (or mapping) from the Cartesian plane, objects change both position and shape. An object that was in the Cartesian plane, is moved over to the -plane. Figure 5.7.2 provides one way of visualizing the distortion experienced when the Cartesian plane is mapped onto the polar plane. The red horizontal and green vertical lines in the Cartesian plane become the curved red and green lines, respectively, in the polar plane.
|
>
|
use plots in
module()
local P1,P2,P3,a;
P1:=plot([seq([a,t,t=1..5],a=1..5)],color=green):
P2:=plot([1,2,3,4,5],x=1..5,color=red):
P3:=display(P1,P2,scaling=constrained,view=[0..6,0..6],labels=[x,y],labelfont=[default,12]):
print(P3);
end module:
end use:
|
|
>
|
use plots in
module()
local p1,p2,p3,a,b;
p1:=plot([seq([sqrt(b^2+t^2),arctan(b,t),t=1..5],b=1..5)],color=red):
p2:=plot([seq([sqrt(t^2+a^2),arctan(t,a),t=1..5],a=1..5)],color=green):
p3:=display(p1,p2,scaling=constrained,labels=[r,typeset(theta)],view=[0..8,0..2],axis=[gridlines=[linestyle=dot]],tickmarks=[spacing(1),spacing(1)],labelfont=[default,12]):
print(p3);
end module:
end use:
|
|
Figure 5.7.2 Gridlines from the Cartesian plane mapped to the polar plane
|
|
|
•
|
Figure 5.7.3 shows a unit square in the Cartesian plane. Figure 5.7.4 shows the image of this square under the mapping that takes the Cartesian square over to the -plane.
|
|
Figure 5.7.3 A unit square in the Cartesian plane
|
|
|
|
>
|
use plots in
module()
local p1,p2,p3,a,b;
p1:=plot([seq([sqrt(b^2+t^2),arctan(b,t),t=1..2],b=1..2)],color=[black,green]):
p2:=plot([seq([sqrt(t^2+a^2),arctan(t,a),t=1..2],a=1..2)],color=[blue,red]):
p3:=display(p1,p2,scaling=constrained,labels=[r,typeset(theta)],view=[1..3,0..2],axis=[gridlines=[linestyle=dot]],tickmarks=[spacing(1),spacing(1)],labelfont=[default,12]):
print(p3);
end module:
end use:
|
|
Figure 5.7.4 Polar-plane image of Cartesian square
|
|
|
|
|
|
•
|
Because of the distortion experienced by the square, the element of area in the Cartesian plane, namely, or , becomes or . The scaling factor is the absolute value of the Jacobian , which is best obtained from the inverse of the mapping formulas: . Thus, the scaling factor for area in polar coordinates is
|
= = =
|
|
Examples
|
|
Example 5.7.1
|
Calculate the area of contained in one loop of the 4-leaf rose .
|
Example 5.7.2
|
Calculate the area that is inside the cardioid but outside the circle .
|
Example 5.7.3
|
Calculate the area that is inside the circle but outside the cardioid .
|
Example 5.7.4
|
Calculate the area that is inside the circle but outside the cardioid .
|
Example 5.7.5
|
Calculate the area that is inside the circle but outside the limaçon .
|
Example 5.7.6
|
Calculate the area that is inside the large loop, but outside the small inner loop, of the limaçon .
|
Example 5.7.7
|
Calculate the area that is inside the circle but outside the circle .
|
Example 5.7.8
|
Calculate the area that is common to the circle and the cardioid .
|
Example 5.7.9
|
Calculate the area that is inside the lemniscate but outside the circle .
|
Example 5.7.10
|
Calculate the area that is inside both the rose and the circle .
|
Example 5.7.11
|
Calculate the area that is inside the cardioid but outside the circle .
|
Example 5.7.12
|
Give a geometric construction showing that for polar coordinates, or .
|
|
|
|
<< Previous Section Table of Contents Next Chapter >>
© 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
|