Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Trigonometry and Polar Coordinates

Lesson ~12 min read 8 MCQs

In simple terms: In simple terms, polar coordinates are a different way to find a point on a map, using distance and an angle (like on a radar screen) instead of just left/right and up/down.

Why this matters

Imagine you're in downtown Boston, trying to give a friend directions to meet you for coffee. You could say, "From the statue, walk three blocks east and then four blocks north." That's a perfectly good set of directions. It uses a grid system, just like the (x, y) coordinates you've used for years. We call this the rectangular coordinate system.

But what if you could just point and say, "Face that direction and walk five blocks"? That's also a perfect set of directions. You've given a distance (five blocks) and an angle (that direction). This is the core idea behind polar coordinates.

Instead of (x, y), we use (r, θ)—a radius and an angle. It's how a radar system tracks a plane or how you'd describe a location on a dartboard. In this lesson, we'll master both systems and learn to translate between them seamlessly.

Comparing rectangular (x,y) and polar (r,θ) coordinate systems.

Concept overview

flowchart TD
    A[Start with Rectangular (x, y)] --> B{Find r};
    B --> C[r = sqrt(x^2 + y^2)];
    A --> D{Find theta};
    D --> E[theta_calc = arctan(y/x)];
    E --> F{Is x < 0?};
    F -- No --> G[theta = theta_calc];
    F -- Yes --> H[theta = theta_calc + pi];
    C --> I[Combine];
    G --> I;
    H --> I;
    I --> J[End with Polar (r, theta)];
This diagram shows a flowchart for converting rectangular coordinates (x, y) to polar coordinates (r, theta). It illustrates the two parallel steps of calculating r and theta, with a critical decision point for adjusting theta based on whether x is negative.

Core explanation

For your entire math career, you've plotted points on the Cartesian plane. You start at the origin (0, 0), move left or right along the x-axis, and then move up or down along the y-axis. This is the rectangular coordinate system. It's like navigating a city grid.

Now, let's introduce a new system: the polar coordinate system.

The Polar Grid: Circles and Spokes

Imagine a dartboard. To describe where a dart landed, you could measure its distance from the bullseye and the angle it's at. That's the polar system.

  • The pole is the center point, which is the same as the origin (0, 0) in the rectangular system.
  • The polar axis is a ray starting from the pole and going to the right. It's the same as the positive x-axis.

A polar coordinate is an ordered pair (r, θ) where:

  • r is the radius: the directed distance from the pole to the point.
  • θ is the angle: the angle made with the polar axis, measured counter-clockwise.

For example, the point (3, π/2) means you face the π/2 direction (straight up) and move 3 units out from the pole.

Visualizing a polar point (r, θ) on a polar grid.

One Point, Many Names

Here's the first big difference from the rectangular system. In the (x, y) system, every point has exactly one address. The point (2, 3) is just (2, 3).

In the polar system, a single point can have infinite addresses.

Consider the point (2, π/4).

  • You could go all the way around the circle and come back to the same spot. This would be (2, π/4 + 2π), or (2, 9π/4).
  • You could also face the opposite direction (π/4 + π = 5π/4) and walk backwards 2 units. A negative radius r means you walk backward from the direction you're facing. So, (-2, 5π/4) is the exact same point as (2, π/4).
A single point with multiple polar coordinate representations.

This flexibility is powerful, but it's something you need to watch out for.

Translating Between Systems

The real power comes from being able to convert between rectangular (x, y) and polar (r, θ) coordinates. Let's build the bridge between them.

Imagine a point P on the plane.

  • Its rectangular address is (x, y).
  • Its polar address is (r, θ).

If we draw a line from the origin to P, its length is r. If we drop a perpendicular line from P to the x-axis, we form a right triangle.

Relating Polar & Rectangular Coordinates

The sides of this triangle are x and y, and the hypotenuse is r. The angle at the origin is θ. Now we can use basic trigonometry (SOH CAH TOA) to find the conversion formulas.

From Polar (r, θ) to Rectangular (x, y)

This is the more straightforward conversion.

  • cos(θ) = adjacent / hypotenuse = x / r --> x = r cos(θ)
  • sin(θ) = opposite / hypotenuse = y / r --> y = r sin(θ)

That's it. If you have r and θ, you just plug them in to find x and y.

From Rectangular (x, y) to Polar (r, θ)

Going the other way requires a bit more care.

  • From the Pythagorean Theorem, x² + y² = r². So, r = √(x² + y²). We usually use the positive root for r, but remember that a negative r is also possible.
  • From SOH CAH TOA, tan(θ) = opposite / adjacent = y / x. So, θ = arctan(y/x).

Look at the x coordinate to decide:

  • If x > 0 (your point is in Q-I or Q-IV), your calculator's arctan(y/x) result is correct.
  • If x < 0 (your point is in Q-II or Q-III), you must add π (or 180°) to your calculator's result to get the correct angle.

For example, for the point (-√3, 1), x is negative. arctan(1/-√3) gives -π/6 (an angle in Q-IV). But we know the point is in Q-II. So we add π: θ = -π/6 + π = 5π/6.

Connection to Complex Numbers

This might seem like a jump, but it's just a new way of labeling the same points. A complex number z = a + bi can be plotted on the complex plane, where the horizontal axis is the "real" axis and the vertical axis is the "imaginary" axis.

The point (a, b) is the same as the complex number a + bi.

So, converting a complex number to its polar form is the exact same process as converting a rectangular coordinate.

  • a is just our x.
  • b is just our y.

Using our conversion formulas: x = r cos(θ) and y = r sin(θ) We can rewrite a + bi as: (r cos θ) + i(r sin θ)

This is the polar form of a complex number. It looks complicated, but it's just a direct substitution of the formulas you already know.

Geometric relationship between rectangular (x,y) and polar (r,θ).

Worked examples

Let's walk through a few examples to make this concrete.

Example 1

Convert Polar to Rectangular

Problem: Convert the polar coordinate (2, 5π/6) to rectangular coordinates.

Step 1: Identify your r and θ. Here, r = 2 and θ = 5π/6.

Step 2: Use the conversion formulas. The formulas to go from polar to rectangular are:

  • x = r cos(θ)
  • y = r sin(θ)

Step 3: Substitute and solve. For x: x = 2 * cos(5π/6) From the unit circle, we know cos(5π/6) = -√3/2. x = 2 * (-√3/2) = -√3

For y: y = 2 * sin(5π/6) From the unit circle, we know sin(5π/6) = 1/2. y = 2 * (1/2) = 1


Example 2

Convert Rectangular to Polar

Problem: Convert the rectangular coordinate (-4, -4) to polar coordinates (r, θ) with r > 0 and 0 ≤ θ < 2π.

Step 1: Find the radius r. Use the formula r = √(x² + y²). r = √((-4)² + (-4)²) = √(16 + 16) = √32 Simplifying the radical, √32 = √(16 * 2) = 4√2. So, r = 4√2.

Step 2: Find the angle θ. Use the formula θ = arctan(y/x). θ = arctan(-4 / -4) = arctan(1)

Step 3: Adjust the angle for the correct quadrant. A calculator will tell you that arctan(1) = π/4. But wait! The point (-4, -4) is in Quadrant III (negative x, negative y). The angle π/4 is in Quadrant I.

This is the critical step. Because our original x is negative, we must add π to the calculator's result. θ = π/4 + π = 5π/4

The angle 5π/4 is in Quadrant III, which matches our point.


Example 3

Express a Complex Number in Polar Form

Problem: Express the complex number z = -√3 + i in polar form.

Step 1: Identify the rectangular coordinates (a, b). The complex number a + bi corresponds to the point (a, b). Here, z = -√3 + 1i, so a = -√3 and b = 1. Our point is (-√3, 1).

Step 2: Convert (a, b) to (r, θ). This is the same process as Example 2.

  • Find r: r = √((-√3)² + 1²) = √(3 + 1) = √4 = 2.
  • Find θ: θ = arctan(1 / -√3). The calculator gives -π/6.
  • Adjust θ: The point (-√3, 1) is in Quadrant II (x is negative, y is positive). Since x is negative, we must add π. θ = -π/6 + π = 5π/6.

Step 3: Write the number in polar form. The polar form of a complex number is (r cos θ) + i(r sin θ). Substitute r = 2 and θ = 5π/6.

Conversion of polar (2, 5π/6) to rectangular (-√3, 1).

Try it yourself

Ready to try on your own? Don't worry about getting it perfect on the first try. The goal is to practice the process.

Problem 1: A point has polar coordinates (6, 7π/4). What are its rectangular coordinates?

Problem 2: Convert the rectangular coordinates (-5, 12) to polar coordinates (r, θ), where r > 0 and 0 ≤ θ < 2π.