Facebook Pixel
Mathos AI logo

Polar Coordinates

Understanding Polar Coordinates

While the rectangular (Cartesian) coordinate system uses a grid of horizontal and vertical lines to locate points as (x,y)(x, y), the polar coordinate system uses distances and angles. This system is especially useful for graphing curves like circles, spirals, and rosettes that are complicated to express in xx and yy.

What are Polar Coordinates?

In the polar coordinate system, every point on a plane is defined by an ordered pair (r,θ)(r, \theta):

  • rr (radius): The directed distance from the origin (often called the pole).
  • θ\theta (angle): The directed angle measured counterclockwise from the positive xx-axis (the polar axis).

Converting Between Systems

Because polar and rectangular coordinates can describe the exact same point on a plane, we can easily convert between them using right triangle trigonometry.

Imagine a point PP with rectangular coordinates (x,y)(x, y) and polar coordinates (r,θ)(r, \theta). Drawing a line from the origin to PP creates a right triangle where the hypotenuse is rr, the horizontal leg is xx, and the vertical leg is yy.

Polar to Rectangular To find (x,y)(x, y) when you know (r,θ)(r, \theta): x=rcosθx = r \cos \theta y=rsinθy = r \sin \theta

Rectangular to Polar To find (r,θ)(r, \theta) when you know (x,y)(x, y): r=x2+y2r = \sqrt{x^2 + y^2} tanθ=yx\tan \theta = \frac{y}{x} (Note: Always check which quadrant your point (x,y)(x, y) is in to ensure you find the correct angle θ\theta.)

Example 1: Rectangular to Polar

Problem: Convert the rectangular coordinates (3,4)(3, 4) to polar coordinates.

  1. Find rr: r=32+42=9+16=25=5r = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5
  2. Find θ\theta: Since (3,4)(3, 4) is in the first quadrant, we just evaluate the inverse tangent: tanθ=43\tan \theta = \frac{4}{3} θ=arctan(43)0.93 radians (or 53.1)\theta = \arctan\left(\frac{4}{3}\right) \approx 0.93 \text{ radians} \text{ (or } 53.1^\circ\text{)}

Answer: The polar coordinates are approximately (5,0.93)(5, 0.93).

Example 2: Polar to Rectangular

Problem: Convert the polar coordinates (5,π3)\left(5, \frac{\pi}{3}\right) to rectangular coordinates.

  1. Find xx: x=5cos(π3)=5(12)=52x = 5 \cos\left(\frac{\pi}{3}\right) = 5 \left(\frac{1}{2}\right) = \frac{5}{2}
  2. Find yy: y=5sin(π3)=5(32)=532y = 5 \sin\left(\frac{\pi}{3}\right) = 5 \left(\frac{\sqrt{3}}{2}\right) = \frac{5\sqrt{3}}{2}

Answer: The rectangular coordinates are (52,532)\left(\frac{5}{2}, \frac{5\sqrt{3}}{2}\right).