Skip to main content

Polar Coordinates

The rectangular coordinate system where we have the xx-axis and yy-axis is an extremely useful tool in mathematics and engineering. However, sometimes there are applications that are circular in nature, and in such cases, polar coordinates can be more convenient.

Plotting Polar Coordinates

The polar coordinate system is a two-dimensional system where the grid is represented as a series of concentric circles radiating out from the pole (the origin).

Polar Coordinate System
Fig. 1 - Polar Coordinate System

Each polar coordinate in this system is labeled as (r,θ)(r, \theta), where rr is the distance from the pole and θ\theta is the angle measured from the positive xx-axis.

Example\underline{Example}

Plot the point (3,π2)(3, \dfrac{\pi}{2}) on the polar grid.

The point is 33 units away from the pole because r=3r = 3 and the angle is θ=π2\theta = \dfrac{\pi}{2} which means we are sweeping in a counterclockwise direction 9090^\circ from the polar axis. Putting this all together gives us the solution...

Plotting Polar Coordinates
Fig. 2 - Plotting Polar Coordinates

Transforming Between Coordinate System

We often may need to convert between rectangular and polar coordinates which we are able to do using some basic relationships.

Transforming Between Coordinate Systems
Fig. 3 - Transforming Between Coordinate Systems

Off this diagram, we can see the following right triangles relationships which will help us in our transformations...

  1. cosθ=xrx=rcosθ\cos \theta = \dfrac{x}{r} \Rightarrow x = r \cos \theta \\[1em]
  2. sinθ=yry=rsinθ\sin \theta = \dfrac{y}{r} \Rightarrow y = r \sin \theta \\[1em]
  3. r2=x2+y2r^2 = x^2 + y^2 \\[1em]
  4. tanθ=yx\tan \theta = \dfrac{y}{x} \\[1em]

Firstly, we have two equations x=rcosθx = r \cos \theta and y=rsinθy = r \sin \theta which are equations that give us rectangular coordinates and are written in terms of polar coordinates. Therefore, these equations are used to convert from polar to rectangular coordinates through substitution.

Example\underline{Example}

Write the polar coordinates (1,2π3)(-1, \dfrac{2\pi}{3}) in rectangular form.

From the polar coordinates, we know that r=1r = -1 and θ=2π3\theta = \dfrac{2\pi}{3}. Using the equations above, we can find xx and yy as follows...

x=rcosθy=rsinθx=1cos2π3y=1sin2π3x=1(12)y=1(32)x=12y=32\begin{array}{cccccccccccccccccccc} x &=& r \cos \theta &&&& y &=& r \sin \theta \\[1em] x &=& -1 \cos \dfrac{2\pi}{3} &&&& y &=& -1 \sin \dfrac{2\pi}{3} \\[1em] x &=& -1 \left(-\dfrac{1}{2}\right) &&&& y &=& -1 \left(\dfrac{\sqrt{3}}{2}\right) \\[1em] x &=& \dfrac{1}{2} &&&& y &=& -\dfrac{\sqrt{3}}{2} \\[1em] \end{array}

Therefore, the rectangular coordinates are (12,32)\left(\dfrac{1}{2}, -\dfrac{\sqrt{3}}{2}\right).

Instead of converting from polar to rectangular, we may need to convert from rectangular to polar. For this, we could use r2=x2+y2r^2 = x^2 + y^2 and tanθ=yx\tan \theta = \dfrac{y}{x} as both equations are written in terms of rectangular coordinates and can be used to find polar coordinates.

Example\underline{Example}

Write the rectangular coordinates (3,3)(3, 3) in polar form.

From the rectangular coordinates, we know that x=3x = 3 and y=3y = 3. Using the equations above, we can find rr and θ\theta as follows...

r2=x2+y2tanθ=yxr2=32+32tanθ=33r2=9+9tanθ=1r2=18θ=tan1(1)r=18θ=π4,5π4r=32θ=π4\begin{array}{cccccccccccccccccccc} r^2 &=& x^2 + y^2 &&&& \tan \theta &=& \dfrac{y}{x} \\[1em] r^2 &=& 3^2 + 3^2 &&&& \tan \theta &=& \dfrac{3}{3} \\[1em] r^2 &=& 9 + 9 &&&& \tan \theta &=& 1 \\[1em] r^2 &=& 18 &&&& \theta &=& \tan^{-1}(1) \\[1em] r &=& \sqrt{18} &&&& \theta &=& \dfrac{\pi}{4}, \dfrac{5\pi}{4} \\[1em] r &=& 3\sqrt{2} &&&& \theta &=& \dfrac{\pi}{4} \\[1em] \end{array}

Even though, θ=5π4\theta = \dfrac{5\pi}{4} is also a solution, we ignore it as (3,3)(3, 3) is in the first quadrant and only π4\dfrac{\pi}{4} is in the first quadrant.

So, the polar coordinates are (32,π4)\left(3\sqrt{2}, \dfrac{\pi}{4}\right).

Transforming Between Equations

Just like with coordinates, we can convert equations between the polar and rectangular forms using all the trigonmetric relationships we have established. However, even though we can convert between the two forms in a similar manner, the process is significantly more difficult.

Example\underline{Example}

Rewrite the Cartesian equation y2=6yx2y^2 = 6y - x^2 in polar form.

The terms y2y^2 and x2x^2 make it difficult to directly substitute using x=rcosθx = r \cos \theta and y=rsinθy = r \sin \theta. However, we can use the relationship r2=x2+y2r^2 = x^2 + y^2 to help us instead. If we rearrange the equation, we can get the value of rr...

y2=6yx2x2+y2=6yr2=6rsinθr26rsinθ=0r(r6sinθ)=0r=0r6sinθ=0r=0r=6sinθ\begin{array}{cccccccccccccccccccc} y^2 &=& 6y - x^2 \\[1em] x^2 + y^2 &=& 6y \\[1em] r^2 &=& 6r \sin \theta \\[1em] r^2 - 6r \sin \theta &=& 0 \\[1em] r (r - 6 \sin \theta) &=& 0 \\[1em] r = 0 && r - 6 \sin \theta = 0 \\[1em] r = 0 && r = 6 \sin \theta \\[1em] \end{array}

We reject r=0r = 0 as it is the trivial solution due to it only representing one point, (0,0)(0,0).

Therefore, the polar form of the equation is r=6sinθr = 6 \sin \theta.

Using the same process and relationships, we can also convert polar equations to rectangular equations.

Example\underline{Example}

Rewrite the polar equation r=2sinθr = 2 \sin \theta in Cartesian form.

The equation uses sine which means we can directly substitute using y=rsinθy = r \sin \theta. After that we will just need to substitute for rr so that the entire equation is in terms of xx and yy...

r=2sinθr=2(yr)r2=2(yr)rr2=2yx2+y2=2yx2+y22y=0x2+y22y+11=0x2+(y1)21=0x2+(y1)2=1\begin{array}{cccccccccccccccccccc} r &=& 2 \sin \theta \\[1em] r &=& 2 \left(\dfrac{y}{r}\right) \\[1em] r^2 &=& 2 \left(\dfrac{y}{r}\right) r \\[1em] r^2 &=& 2y \\[1em] x^2 + y^2 &=& 2y \\[1em] x^2 + y^2 - 2y &=& 0 \\[1em] x^2 + y^2 - 2y + 1 - 1 &=& 0 \\[1em] x^2 + (y - 1)^2 - 1 &=& 0 \\[1em] x^2 + (y - 1)^2 &=& 1 \\[1em] \end{array}

Therefore, the Cartesian form of the equation is x2+(y1)2=1x^2 + (y - 1)^2 = 1. Note that this is the equation of a circle with center at (0,1)(0, 1) and radius 11.

note

Cartesian form is another name for rectangular form. Just like how the Cartesian coordinate system is another name for the rectangular coordinate system.