Chapter 7: Additional Applications of Integration
Section 7.1: Polar Coordinates
|
Introduction
|
|
•
|
An alternative to rectangular Cartesian coordinates, polar coordinates are predicated on the right-triangle trigonometry in Figure 7.1.1. In a Cartesian plane, the point is at a distance from the origin, and the ray from the origin to (shown in red) makes an angle with the positive -axis. The numbers and are the polar coordinates of the Cartesian point .
|
•
|
Polar coordinates are related to Cartesian coordinates by the formulas in Table 7.1.1.
|
|
|
Table 7.1.1 Cartesian and polar coordinates
|
|
|
|
>
|
use plots in
module()
local p1,p2,p3,p4,p5,p6;
p1:=plot(x,x=0..1,color=red, thickness=3):
p2:=plot(0,x=0..1,color=green, thickness=3):
p3:=plot([1,y,y=0..1],color=green, thickness=3):
p4:=textplot({[.1,1.,typeset(y)],[1,-.1,typeset(x)],[.5,.6,typeset(r)],[.2,.09,typeset(theta)]},font=[default,12]):
p5:=textplot({[.5,-.2,typeset(r*cos(theta))],[1.2,.5,typeset(r*sin(theta))],[1,1.1,typeset(``(x, y))]},font=[default,12]):
p6:=display([p1,p2,p3,p4,p5], scaling=constrained, tickmarks=[0,0], view=[-.3..1.5,-.3..1.2],labels=[" "," "]):
print(p6);
end module:
end use:
|
|
Figure 7.1.1 Right-triangle trig for polar coordinates
|
|
|
|
|
|
Note: It is often better to represent the angle with , the two-argument form of the arctangent function whose range is rather than , as would be obtained with .
|
|
|
The formulas on the right in Table 7.1.1 comprise the forward mapping that gives the polar coordinates of the point whose Cartesian coordinates are . Looked at this way, the imposition of polar coordinates is a mapping of the Cartesian point to the polar point that lives in a rectangular polar plane.
The formulas on the left in Table 7.1.1 comprise the inverse mapping that gives the Cartesian coordinates of the point whose polar coordinates are . It is customary to pull the rectangular grid lines of the polar plane back onto the Cartesian plane. From this perspective, the Cartesian point does not move, it simply gets a new name.
The right-hand side in Figure 7.1.2 shows the rectangular gridlines of the polar plane; the left-hand side, the inverse image of these gridlines pulled back to the Cartesian plane by the formulas on the left in Table 7.1.1. The red and green curves on the left in Figure 7.1.2 are generally called the coordinate curves for polar coordinates.
>
|
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:
|
|
>
|
use plots in
module()
local P1,P2,P3,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)],labelfont=[default,12]):
print(P3);
end module:
end use:
|
|
Figure 7.1.2 Gridlines from the polar plane pulled back to the Cartesian plane
|
|
|
On the right in Figure 7.1.2 the vertical green lines are the lines , which become the green concentric circles on the left. The horizontal red lines are the lines , which become the radial lines on the left. Hence, each Cartesian point on the left has two names, either the Cartesian name or the polar name . In this sense, imposing polar coordinates is a change of coordinates, that is, a change of names for the points in the Cartesian plane.
On the right in Figure 7.1.3 the curve is drawn in the -plane. This plane has a rectangular grid, with horizontal grid lines and vertical grid lines . The curve is given as , but graphed as if it were given as . On the left in Figure 7.1.3 the same curve is graphed in the -plane on which the polar coordinate curves (circles and radial lines) have been superimposed. The animation in the middle of Figure 7.1.3 is an attempt at visualizing how the "bell" on the right becomes the "bean" on the left.
|
-plane
|
|
|
|
>
|
use plots in
module()
local k,t,r,fa,fb,fc,ff,z;
for k from 0 to 18 do
t[k] := k*Pi/9;
r[k] := 2*(1-cos(t[k]));
od:
fa := z -> plot({seq([[0,t[k]*(1-z/18)], [4*cos(t[k]*z/18),t[k]*(1-z/18)+4*sin(t[k]*z/18)]], k=1..18)}, color=green):
fb := z -> plot({seq([r[k]*cos(t[k]*z/18), t[k]*(1-z/18) + r[k]*sin(t[k]*z/18)], k=1..18)}, style=point, symbol=solidcircle,symbolsize=15, color=red):
fc := z -> display([fa(z),fb(z)]):
for k from 0 to 18 do ff[k]:=fc(k);od:
print(display([seq(ff[k],k=0..18)], insequence=true, scaling=constrained));
end module:
end use:
|
|
Animation
|
|
|
|
|
-plane
|
|
|
|
Figure 7.1.3 The curve morphed between the -plane and the -plane
|
|
|
Figure 7.1.4 is included for the sake of completeness. It shows how the Cartesian gridlines map over to the polar plane. It is rare that such an interpretation is needed in the calculus, so the figure is not an essential one in the theory under development.
>
|
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 7.1.4 Gridlines from the Cartesian plane mapped to the polar plane
|
|
|
On the left in Figure 7.1.4 the vertical green lines are the lines , which become the green curves on the left. The horizontal red lines are the lines , which become the red curves on the left.
This introduction concludes with the following note.
Although the radius is positive, the convention is observed.
|
|
|
This convention is consistent with the trig formulas
When , and .
|
|
Curves Given in Polar Coordinates
|
|
An equation of the form defines a curve in polar coordinates. Often, this equation can be rearranged to the explicit form . Converting the implicit form to Cartesian coordinates results in the equation , or the more precise equation . Converting the explicit form results in the equation or the more precise .
Consequently, one way to graph a polar curve is to convert it to Cartesian coordinates, and apply a tool that graphs implicit functions. Alternatively, the explicit form defines the curve parametrically in Cartesian coordinates via the equations
|
|
|
Fortunately, Maple has efficient tools for graphing a polar curve, obviating the need for making these algebraic changes.
|
|
A Dictionary of Polar Curves
|
|
Table 7.1.2 lists five standard polar curves.
Name
|
Representations
|
Comments
|
Circle
|
|
Circle with radius and center at the origin;
|
|
Circle with radius and center at ;
|
|
Circle with radius and center at ;
|
Cardioid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Limaçon
|
|
|
,
=
=
|
|
|
|
|
|
,
=
=
|
|
|
|
Rose
|
|
|
Lemniscate
of
Bernoulli
|
|
|
|
|
|
|
|
|
Table 7.1.2 Common polar curves
|
|
|
1.
|
There is a lemniscate of Gerono, so the modifier "of Bernoulli" is essential when referencing the curve shown in Table 7.1.2. (See, for example, the Wikipedia article here.)
|
2.
|
In the rose, the parameter does not have to be an integer as it is in Table 7.1.2. When is the integer , there are petals when is even, and petals when is odd. Moreover, when is even, the entire rose is traced for , but when is odd, the rose is traced for . If is rational, the curve is closed and of finite length, but if irrational, it is not closed and is of infinite length. The astute observer will discover that the shape of the roses and for integer are the same, except for a rotation of radians. These, and other facts about the rose can be examined further, for example, in the Wikipedia article, here.
|
3.
|
The name "limaçon" derives from the French word that refers to "small snails." The little curl under the letter "c" modifies the pronunciation to a soft "s" sound, so something like lim'-ă-săhn (with a short "i" as in limb) would be a typical North American pronunciation. Of course, the internet provides sites where both a North American pronunciation and a true French pronunciation can be heard.
|
4.
|
The cardioid, a special case of the limaçon (, gets its name from its heart-shaped contour. (See more details in the Wikipedia article here.)
|
|
|
The Conics in Polar Coordinates
|
|
Table 7.1.3 lists equations that define conic sections given in polar coordinates. Each such conic has a focus at the origin, and the directrix parallel to a coordinate axis.
The distance from a point on the conic to the directrix is given by ; the distance between such a point and the focus, divided by is the eccentricity, . (This symbol for the eccentricity is not the exponential "e".) Both and are taken as positive numbers.
Equations
|
Comments
|
|
Directrix vertical and to the right of the focus
|
|
Directrix vertical and to the left of the focus
|
|
Directrix horizontal and above the focus
|
|
Directrix horizontal and below the focus
|
Table 7.1.3 Polar representations for the conic sections
|
|
|
The conic is an ellipse, parabola, or hyperbola accordingly as , or , respectively.
For the ellipse, , where and are the lengths of the semi-major and semi-minor axes, respectively; and is the distance from the center of the ellipse to a focus (of which there are two). For the hyperbola, .
|
|
Examples
|
|
Example 7.1.1
|
Convert the Cartesian point to polar coordinates.
|
Example 7.1.2
|
Convert the Cartesian point to polar coordinates.
|
Example 7.1.3
|
Convert the polar point to Cartesian coordinates.
|
Example 7.1.4
|
Convert the polar point to Cartesian coordinates.
|
Example 7.1.5
|
Graph the cardioid .
|
Example 7.1.6
|
Graph the limaçon .
|
Example 7.1.7
|
Graph the limaçon .
|
Example 7.1.8
|
Graph the lemniscate .
|
Example 7.1.9
|
Graph the roses and .
|
Example 7.1.10
|
Obtain the polar coordinates of the points of intersection of the curves defined by and .
|
Example 7.1.11
|
Obtain the polar coordinates of the points of intersection of the curves defined by and , a circle and limaçon, respectively.
|
Example 7.1.12
|
Graph the ellipse , and obtain the standard form of its Cartesian representation.
|
Example 7.1.13
|
Graph the parabola .
|
|
|
|
<< Chapter Overview Table of Contents Next Section >>
© 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
|