Skip to main content

Section 2.2 Polar Coordinates

The standard way of representing point in R2 is using rectangular coordinates, (x,y). However, sometimes is more convenient to instead use polar coordinates (r,ΞΈ). The polar coordinates and the rectangular coordinates are related to each other by the following relations.
  • From cartesian to polar.
    r=x2+y2, and ΞΈ=tanβˆ’1yx.
  • From polar to cartesian.
    x=rcos⁑θ, and y=rsin⁑θ.
Find the distance between the two points: p1=(1,Ο€6) and p2=(3,βˆ’Ο€2)
The distance between two points in cartesian coordinates, (x1,y1) and (x2,y2), is defined as
distance =(x1βˆ’x2)2+(y1βˆ’y2)2.
To find the distance between two polar points, we first convert each point to cartesian coordinates and then apply the formula for distance.
(x1,y1)=(1cos⁑(Ο€6),1sin⁑(Ο€6))=(32,12).(x2,y2)=(3cos⁑(βˆ’Ο€2),3sin⁑(βˆ’Ο€2))=(0,βˆ’3).
distance =(32βˆ’0)2+(12βˆ’(βˆ’3))2=34+494=524=13β‰ˆ3.61.
For each set of polar coordinates (r,ΞΈ), match the equivalent cartesian coordinates (x,y).
  1.  (2,βˆ’0.8Ο€)
  2.  (5,βˆ’0.7Ο€)
  3.  (5,βˆ’0.3Ο€)
  4.  (3,0.2Ο€)
A(2.93893,βˆ’4.04508)B(βˆ’2.93893,βˆ’4.04508)C(βˆ’1.61803,βˆ’1.17557)D(2.42705,1.76336)
For each set of cartesian coordinates (x,y), match the equivalent polar coordinates (r,ΞΈ).
  1.  (βˆ’0.809017,0.587785)
  2.  (βˆ’0.951057,βˆ’0.309017)
  3.  (0,βˆ’5)
  4.  (1.23607,βˆ’3.80423)
A(A,0.6Ο€)B(B,0.8Ο€)C(C,βˆ’0.5Ο€)D(D,0.1Ο€)