Polar Coordinates Formula

The Formula

x = r\cos\theta, \quad y = r\sin\theta
r = \sqrt{x^2 + y^2}, \quad \theta = \arctan\!\left(\frac{y}{x}\right)

When to use: Instead of 'go right 3, up 4' (Cartesian), polar says 'go 5 units in the direction of 53°.' It's how a radar works—distance and direction from a central point. Some shapes that look complicated in Cartesian coordinates become beautifully simple in polar.

Quick Example

The Cartesian point (1, 1) in polar:
r = \sqrt{1^2 + 1^2} = \sqrt{2}, \quad \theta = \arctan\!\left(\frac{1}{1}\right) = \frac{\pi}{4}
So (1, 1) = \left(\sqrt{2},\, \frac{\pi}{4}\right) in polar.

Notation

A point is written (r, \theta). By convention, r \geq 0 and \theta \in [0, 2\pi) or (-\pi, \pi], though negative r is sometimes allowed (meaning go in the opposite direction).

What This Formula Means

A coordinate system where each point in the plane is described by a distance r from the origin and an angle \theta from the positive x-axis, written as (r, \theta).

Instead of 'go right 3, up 4' (Cartesian), polar says 'go 5 units in the direction of 53°.' It's how a radar works—distance and direction from a central point. Some shapes that look complicated in Cartesian coordinates become beautifully simple in polar.

Formal View

(r, \theta) \mapsto (x,y) = (r\cos\theta,\, r\sin\theta); inverse: r = \sqrt{x^2+y^2}, \theta = \text{atan2}(y, x)

Worked Examples

Example 1

easy
Convert the polar coordinates (4, \frac{\pi}{3}) to rectangular (Cartesian) coordinates.

Solution

  1. 1
    Use the conversion formulas: x = r\cos\theta and y = r\sin\theta.
  2. 2
    x = 4\cos\left(\frac{\pi}{3}\right) = 4 \cdot \frac{1}{2} = 2.
  3. 3
    y = 4\sin\left(\frac{\pi}{3}\right) = 4 \cdot \frac{\sqrt{3}}{2} = 2\sqrt{3}.

Answer

(2, 2\sqrt{3})
Polar coordinates (r, \theta) locate a point by its distance from the origin and angle from the positive x-axis. Converting to rectangular uses x = r\cos\theta and y = r\sin\theta, which come from the right triangle formed by the point, the origin, and the projection onto the x-axis.

Example 2

medium
Convert the rectangular point (-3, 3) to polar coordinates with r > 0 and 0 \le \theta < 2\pi.

Common Mistakes

  • Using \theta = \arctan(y/x) without adjusting for quadrant: \arctan returns values in (-\frac{\pi}{2}, \frac{\pi}{2}), so you must add \pi when the point is in Quadrant II or III.
  • Forgetting that polar representation is not unique: (r, \theta) and (r, \theta + 2\pi) represent the same point, and so does (-r, \theta + \pi).
  • Confusing the order: polar is (r, \theta)—distance first, angle second—which is the opposite of how we often describe directions in everyday language ('turn 30°, then walk 5 steps').

Why This Formula Matters

Many natural phenomena are radial—orbits, waves radiating from a source, spirals. Polar coordinates simplify equations for circles (r = a), spirals (r = a\theta), and other curves that would be messy in Cartesian form.

Frequently Asked Questions

What is the Polar Coordinates formula?

A coordinate system where each point in the plane is described by a distance r from the origin and an angle \theta from the positive x-axis, written as (r, \theta).

How do you use the Polar Coordinates formula?

Instead of 'go right 3, up 4' (Cartesian), polar says 'go 5 units in the direction of 53°.' It's how a radar works—distance and direction from a central point. Some shapes that look complicated in Cartesian coordinates become beautifully simple in polar.

What do the symbols mean in the Polar Coordinates formula?

A point is written (r, \theta). By convention, r \geq 0 and \theta \in [0, 2\pi) or (-\pi, \pi], though negative r is sometimes allowed (meaning go in the opposite direction).

Why is the Polar Coordinates formula important in Math?

Many natural phenomena are radial—orbits, waves radiating from a source, spirals. Polar coordinates simplify equations for circles (r = a), spirals (r = a\theta), and other curves that would be messy in Cartesian form.

What do students get wrong about Polar Coordinates?

The conversion \theta = \arctan(y/x) only gives the correct angle in Quadrants I and IV. For Quadrants II and III, you must add \pi (or check the signs of x and y separately) to get the right angle.

What should I learn before the Polar Coordinates formula?

Before studying the Polar Coordinates formula, you should understand: trigonometric functions, unit circle, radian measure.