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 x,y is at a distance r from the origin, and the ray from the origin to x,y (shown in red) makes an angle θ with the positive x-axis. The numbers r and θ are the polar coordinates of the Cartesian point x,y.
Polar coordinates are related to Cartesian coordinates by the formulas in Table 7.1.1.
x=r cosθ
y=r sinθ
r=x2+y2
θ=arctany/x
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 θ=arctany,x, the two-argument form of the arctangent function whose range is −π,π rather than −π/2,π/2, as would be obtained with θ=arctany/x.
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 x,y. Looked at this way, the imposition of polar coordinates is a mapping of the Cartesian point to the polar point r,θ 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 r,θ. 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 r=constant, which become the green concentric circles on the left. The horizontal red lines are the lines θ=constant, which become the radial lines on the left. Hence, each Cartesian point on the left has two names, either the Cartesian name x,y or the polar name r,θ. 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 r=21−cosθ is drawn in the rθ-plane. This plane has a rectangular grid, with horizontal grid lines θ=constant and vertical grid lines r=constant. The curve is given as r=rθ, but graphed as if it were given as θ=θr. On the left in Figure 7.1.3 the same curve is graphed in the xy-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.
xy-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
rθ-plane
Figure 7.1.3 The curve r=21−cosθ morphed between the rθ-plane and the xy-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 x=constant, which become the green curves on the left. The horizontal red lines are the lines y=constant, which become the red curves on the left.
This introduction concludes with the following note.
Although the radius r=x2+y2 is positive, the convention −r,θ=r,θ+π is observed.
This convention is consistent with the trig formulas
sinx+y=sin⁡x⁢cos⁡y+cos⁡x⁢sin⁡y
cosx+y=cos⁡x⁢cos⁡y−sin⁡x⁢sin⁡y
When y=π, sinx+π=−sinx and cosx+π=−cosx.
Curves Given in Polar Coordinates
An equation of the form Fr,θ=0 defines a curve in polar coordinates. Often, this equation can be rearranged to the explicit form r=fθ. Converting the implicit form to Cartesian coordinates results in the equation Fx2+y2,arctany/x=0, or the more precise equation Fx2+y2,arctany,x=0. Converting the explicit form results in the equation x2+y2=farctany/x or the more precise x2+y2=farctany,x.
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 r=fθ defines the curve parametrically in Cartesian coordinates via the equations
x=r cosθ=fθ cosθy=r sinθ=fθ sinθ
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
r=a
Circle with radius a and center at the origin; θ∈0,2 π
r=a cosθ
Circle with radius a/2 and center at a/2,0; θ∈0,π
r=a sinθ
Circle with radius a/2 and center at 0, a/2; θ∈0,π
Cardioid
r=a1 ±cosθ
θ∈0,2 π
r=a1−cosθ
r=a1+ cosθ
r=a1 ±sinθ
r=a1−sinθ
r=a1+ sinθ
Limaçon
r=b ±cosθ
r=b+cosθ, r=b−cosθ
b = =
r=b ±sinθ
r=b+sinθ, r=b−sinθ
Rose
r=a cosc θ
r=a sinc θ
θ∈0,2 π
c = =
Lemniscate
of
Bernoulli
r2=2 a2cos2 θ
r2=2 a2sin2 θ
r2=2 a2 cos2 θ
Table 7.1.2 Common polar curves
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.)
In the rose, the parameter c does not have to be an integer as it is in Table 7.1.2. When c is the integer k, there are 2 k petals when k is even, and k petals when k is odd. Moreover, when k is even, the entire rose is traced for θ∈0,2 π, but when k is odd, the rose is traced for θ∈0,π. If k 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 r=a cosk θ and r=a sink θ for integer k are the same, except for a rotation of π/2 k radians. These, and other facts about the rose can be examined further, for example, in the Wikipedia article, here.
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.
The cardioid, a special case of the limaçon (b=1), 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 d; the distance between such a point and the focus, divided by d is the eccentricity, e. (This symbol for the eccentricity is not the exponential "e".) Both d and e are taken as positive numbers.
Equations
r=e d1+e cosθ
Directrix vertical and to the right of the focus
r=e d1−e cosθ
Directrix vertical and to the left of the focus
r=e d1+e sinθ
Directrix horizontal and above the focus
r=e d1−e sinθ
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 e<1,e=1, or e>1, respectively.
For the ellipse, a=e d1−e2,b=e d1−e2,c=a2−b2=e2d1−e2, where a and b are the lengths of the semi-major and semi-minor axes, respectively; and c is the distance from the center of the ellipse to a focus (of which there are two). For the hyperbola, c=a2+b2.
Examples
Example 7.1.1
Convert the Cartesian point 2,3 to polar coordinates.
Example 7.1.2
Convert the Cartesian point −2,3 to polar coordinates.
Example 7.1.3
Convert the polar point 2,3 to Cartesian coordinates.
Example 7.1.4
Convert the polar point −2,3 to Cartesian coordinates.
Example 7.1.5
Graph the cardioid r=21−cosθ.
Example 7.1.6
Graph the limaçon r=1/2−cosθ.
Example 7.1.7
Graph the limaçon r=3/2−cosθ.
Example 7.1.8
Graph the lemniscate r2=4 cos2 θ.
Example 7.1.9
Graph the roses r=cos5 θ and r=cosθ/5.
Example 7.1.10
Obtain the polar coordinates of the points of intersection of the curves defined by r=cosθ and r=1+sinθ.
Example 7.1.11
Obtain the polar coordinates of the points of intersection of the curves defined by r=sinθ and r=1/5+cosθ, a circle and limaçon, respectively.
Example 7.1.12
Graph the ellipse r=5/2+cosθ, and obtain the standard form of its Cartesian representation.
Example 7.1.13
Graph the parabola r=11−sinθ.
<< 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
Download Help Document