Topic · Trigonometry

Polar Coordinates

A second way to name a point in the plane. Instead of "$x$ to the right, $y$ up," polar says "$r$ away from the origin, at angle $\theta$." For anything circular, rotational, or radial — orbits, antenna patterns, microphone pickup, flower petals — this is the natural language, and trying to use Cartesian instead is like writing a sonnet in JSON.

What you'll leave with

  • How to name a point as $(r, \theta)$, and why the same point has infinitely many names.
  • The four formulas that convert between polar and rectangular — both for points and for equations.
  • Why the quadrant matters when you use $\arctan$, and why $\operatorname{atan2}$ exists to spare you the bookkeeping.
  • A working catalog of polar curves: circle, ray, cardioid, limaçon, rose — what they look like and how to recognize the equation.
  • A first glimpse of why complex multiplication becomes trivial in polar form.

1. What polar coordinates are

Polar coordinates

A point in the plane is named by an ordered pair $(r, \theta)$ where $r$ is its distance from the origin (the pole) and $\theta$ is the angle that the ray from the origin to the point makes with the positive $x$-axis, measured counterclockwise.

The two pieces of information are the two you actually want when you're thinking radially. "How far am I from here, and which way am I facing?" — the polar pair answers exactly that question. The rectangular pair answers a different question: "How many steps east, and how many steps north?"

Both questions describe the same point. They're equally valid; they're just different vocabularies.

2. Converting points between polar and rectangular

Drop the point $P = (x, y) = (r\cos\theta, r\sin\theta)$ onto the plane. The right triangle whose hypotenuse is the segment from the origin to $P$ has horizontal leg $x$, vertical leg $y$, and hypotenuse $r$ at angle $\theta$ from the $x$-axis. Two pieces of basic trig fall out immediately.

Polar → rectangular

$$ x = r\cos\theta \qquad y = r\sin\theta $$

These are just the definitions of sine and cosine on a circle of radius $r$. You already know them from the unit circle, scaled up.

Rectangular → polar

$$ r = \sqrt{x^2 + y^2} \qquad \theta = \arctan\!\frac{y}{x} \;\;(\text{with quadrant care}) $$

The first is the Pythagorean theorem. The second is the trig identity solved for the angle — but with a catch we'll address in a moment.

x y y = r sin θ x = r cos θ r θ P = (x, y) = (r, θ) r² = x² + y² tan θ = y / x

Worked: polar to rectangular

Convert $(r, \theta) = (4, \pi/3)$:

$$ x = 4\cos(\pi/3) = 4 \cdot \tfrac{1}{2} = 2 \qquad y = 4\sin(\pi/3) = 4 \cdot \tfrac{\sqrt{3}}{2} = 2\sqrt{3} $$

So $(4, \pi/3) \longleftrightarrow (2, 2\sqrt{3})$.

Worked: rectangular to polar — and the quadrant trap

Convert $(x, y) = (1, 1)$. Easy: $r = \sqrt{1+1} = \sqrt{2}$, and $\theta = \arctan(1) = \pi/4$. The point is in Quadrant I and $\arctan$ returns $\pi/4$. Everything matches.

Now try $(x, y) = (-1, -1)$. By the same formula: $r = \sqrt{2}$ and $\arctan(-1/-1) = \arctan(1) = \pi/4$. But $(-1, -1)$ is in Quadrant III, nowhere near $\pi/4$. The arithmetic of $-1/-1$ throws away the sign information, and $\arctan$ only ever returns angles in $(-\pi/2, \pi/2)$ — it has no way to know which quadrant you started in.

The fix: look at the original signs of $x$ and $y$ and correct $\theta$ by hand.

QuadrantSigns of $(x, y)$$\theta$ from $\arctan(y/x)$
I$(+, +)$Use directly
II$(-, +)$Add $\pi$
III$(-, -)$Add $\pi$ (or subtract $\pi$)
IV$(+, -)$Use directly (negative result)

For $(-1, -1)$: Quadrant III, so $\theta = \pi/4 + \pi = 5\pi/4$ (equivalently $-3\pi/4$). Sanity check: $r\cos(5\pi/4) = \sqrt{2} \cdot (-\sqrt{2}/2) = -1$ ✓.

Programmer's shortcut

Every programming language has a function called atan2(y, x) that does the quadrant correction for you. It takes both $y$ and $x$ as separate arguments — so it can see the signs — and returns the right angle in $(-\pi, \pi]$. If you ever need to do this conversion in code, reach for atan2 and forget the table above.

3. Non-uniqueness of polar names

Here's a thing rectangular coordinates do but polar doesn't: uniquely name each point. Every $(x, y)$ pair names exactly one point and every point has exactly one $(x, y)$ name. Polar plays by looser rules.

Consider the point at distance $2$ along the angle $\pi/4$. All of these name the same point:

$$ (2,\, \pi/4) \quad=\quad (2,\, \pi/4 + 2\pi) \quad=\quad (2,\, 9\pi/4) \quad=\quad (-2,\, \pi/4 + \pi) \quad=\quad (-2,\, 5\pi/4) $$

Three things are going on:

  • Adding $2\pi$ to $\theta$ spins all the way around and lands on the same spot.
  • Flipping the sign of $r$ and adding $\pi$ to $\theta$ also lands on the same spot — "go $|r|$ units in the opposite direction" is identical to "go $|r|$ units this way."
  • The origin is $(0, \theta)$ for every $\theta$. There's no angle attached when $r = 0$.
Not a bug

The redundancy is annoying for bookkeeping but it's also useful. The "negative $r$" convention is what lets a single equation like $r = 1 + 2\cos\theta$ trace out a curve with an inner loop without piecewise definitions — values where $r$ goes negative simply draw on the opposite side of the origin, and the curve stays smooth.

4. Converting equations

Converting a single point is mechanical. Converting an equation — a whole curve, viewed through a different vocabulary — is where polar starts to pay off. The two directions use the same four substitutions, applied with judgment.

SubstitutionUse when
$x = r\cos\theta$Polar → rect: replace $r\cos\theta$ with $x$. Rect → polar: replace $x$.
$y = r\sin\theta$Same idea, vertical.
$r^2 = x^2 + y^2$The most useful trick — gets rid of square roots.
$\tan\theta = y/x$When the polar equation involves $\theta$ alone.

Rectangular → polar: a circle

$x^2 + y^2 = 9$ is the rectangular form of a circle of radius $3$ at the origin. Substituting directly:

$$ r^2 = 9 \quad\Longrightarrow\quad r = 3 $$

One symbol versus three. Polar form is a single equation: "distance from origin equals $3$."

Polar → rectangular: an off-center circle

The polar equation $r = 2\cos\theta$ doesn't look like a circle at first glance. The standard trick: multiply both sides by $r$ to get into shape for our substitutions.

$$ r = 2\cos\theta $$ $$ r^2 = 2r\cos\theta $$ $$ x^2 + y^2 = 2x $$ $$ x^2 - 2x + y^2 = 0 $$ $$ (x - 1)^2 + y^2 = 1 $$

It's a circle of radius $1$ centered at $(1, 0)$ — it just happens to pass through the origin. More generally, $r = 2a\cos\theta$ is a circle of radius $|a|$ centered at $(a, 0)$. That's a fact worth memorizing; it shows up everywhere.

When to multiply by r

Whenever you see $r$ alone, multiplying both sides by $r$ converts it to $r^2$ and a term like $r\cos\theta$ becomes $x$ — which exposes the rectangular form. The cost: you might pick up the spurious solution $r = 0$ (the origin), but the origin almost always already satisfies the original anyway.

5. Why polar is natural for rotation

The whole point of having a second coordinate system isn't variety — it's that some problems are structurally radial. Forcing them into Cartesian form is fighting their geometry.

Examples where polar makes everything easier:

  • Orbits. A planet's orbit is naturally described by its distance from the Sun ($r$) and the angle it has swept out ($\theta$). Kepler's first law states this orbit is an ellipse with the Sun at one focus, and the polar equation $r = p / (1 + e\cos\theta)$ states the same thing in two short symbols. The rectangular form takes a quarter of a page.
  • Antenna and microphone patterns. "How sensitive is this microphone at angle $\theta$?" is a question about a function of $\theta$ alone. The cardioid pickup pattern $r = 1 + \cos\theta$ — most sensitive in front, dead behind — is one curve in polar; in rectangular it's a mess.
  • Radar and sonar. The native data is range $r$ and bearing $\theta$. You only convert to $(x, y)$ when you want to do vector arithmetic — and you often don't bother.
  • Anything radially symmetric. The temperature distribution around a hot wire, the gravitational field of a planet, the diffraction pattern from a circular aperture: all functions of $r$ alone, and they look trivial in polar.
The picture and the equation should agree on what's hard. If your picture is rotational, your equation should also be rotational.

6. A small zoo of polar curves

Each curve below is drawn from its polar equation in the panel. CSS-variable colors throughout — the accent renders the curve, the tip color marks the pole or key points.

Recognizing the family from the equation

$r =$ constant → circle at pole. $\theta =$ constant → line through pole. $r = a\cos\theta$ or $r = a\sin\theta$ → off-center circle through pole. $r = a + b\cos\theta$ → cardioid (if $|a|=|b|$) or limaçon. $r = a\cos(n\theta)$ → rose with $n$ or $2n$ petals.

7. Teaser: complex numbers in polar form

A complex number $z = x + iy$ is, geometrically, just a point in the plane. So it inherits polar coordinates for free:

$$ z = x + iy = r\cos\theta + i\, r\sin\theta = r(\cos\theta + i\sin\theta) $$

The polar pair $(r, \theta)$ has its own names here: $r$ is the modulus (size), $\theta$ is the argument (direction). And here's the punchline that justifies all this machinery — when you multiply two complex numbers, polar form does almost all the work for you:

$$ \big( r_1, \theta_1 \big) \cdot \big( r_2, \theta_2 \big) \;=\; \big( r_1 r_2,\, \theta_1 + \theta_2 \big) $$

Multiplying moduli, adding arguments. Multiplication in $\mathbb{C}$ — which looks like a messy distributive-law calculation in rectangular form — becomes "rotate and scale" in polar. This single fact is the engine behind de Moivre's theorem, roots of unity, and the entire trigonometric form of complex numbers you'll see in the next chapter.

Where this goes

If multiplication is "rotate and scale," then powers of $z$ are repeated rotations and scalings, and the $n$-th roots of $1$ are equally spaced around the unit circle. The picture is one of pure rotation — invisible in Cartesian, obvious in polar.

8. Common pitfalls

Quadrant error in arctan

$\arctan(y/x)$ only ever returns values in $(-\pi/2, \pi/2)$ — the right half-plane. For points in Q II or Q III you must add $\pi$ by hand, or use $\operatorname{atan2}(y, x)$ which handles all four quadrants automatically. This is the single most common bug when implementing rectangular-to-polar conversion.

Petal count for roses

$r = a\cos(n\theta)$ has $n$ petals when $n$ is odd and $2n$ petals when $n$ is even. Easy to memorize the wrong way around. The reason: an odd-$n$ rose retraces the same curve as $\theta$ runs from $\pi$ to $2\pi$, so the second sweep visits the same petals; an even-$n$ rose draws a new set.

Forgetting to multiply by r

To convert $r = 2\cos\theta$ to rectangular form you have to multiply both sides by $r$ first ($r^2 = 2r\cos\theta$, then $x^2 + y^2 = 2x$). Substituting directly without the multiplication leaves you stuck with a lone $r$ that has no rectangular form.

Missing pole intersections

Two polar curves can both pass through the pole at different values of $\theta$ — and so share the origin as a common point even though no single $\theta$ solves both equations simultaneously. When finding intersections of polar curves, always check the pole separately.

Non-uniqueness is not an error

If your answer is $\theta = 5\pi/4$ and the book says $\theta = -3\pi/4$, you might both be right. The difference is just $2\pi$, and polar coordinates are happy to call those equivalent.

9. Worked examples

Try each one before opening the solution. Match your steps against the canonical recipe, not just the final number.

Example 1 · Polar to rectangular: convert $(r, \theta) = (4, \pi/3)$

Step 1. Apply $x = r\cos\theta$, $y = r\sin\theta$:

$$ x = 4\cos(\pi/3) = 4 \cdot \tfrac{1}{2} = 2 $$ $$ y = 4\sin(\pi/3) = 4 \cdot \tfrac{\sqrt{3}}{2} = 2\sqrt{3} $$

Answer. $(2, 2\sqrt{3})$.

Check. $\sqrt{2^2 + (2\sqrt{3})^2} = \sqrt{4 + 12} = 4 = r$ ✓.

Example 2 · Rectangular to polar with quadrant care: convert $(-1, \sqrt{3})$

Step 1. Compute $r$:

$$ r = \sqrt{(-1)^2 + (\sqrt{3})^2} = \sqrt{1 + 3} = 2 $$

Step 2. Compute the raw arctan:

$$ \arctan\!\frac{\sqrt{3}}{-1} = \arctan(-\sqrt{3}) = -\tfrac{\pi}{3} $$

Step 3. The point has $x < 0$ and $y > 0$ — Quadrant II. Add $\pi$:

$$ \theta = -\tfrac{\pi}{3} + \pi = \tfrac{2\pi}{3} $$

Answer. $(r, \theta) = (2,\, 2\pi/3)$.

Check. $2\cos(2\pi/3) = 2 \cdot (-1/2) = -1$ ✓ and $2\sin(2\pi/3) = 2 \cdot (\sqrt{3}/2) = \sqrt{3}$ ✓.

Example 3 · Converting a polar equation to rectangular: $r = 2\cos\theta$

Step 1. The right side has a lone $\cos\theta$. Multiply both sides by $r$ to set up the substitution:

$$ r^2 = 2r\cos\theta $$

Step 2. Substitute $r^2 = x^2 + y^2$ and $r\cos\theta = x$:

$$ x^2 + y^2 = 2x $$

Step 3. Complete the square in $x$:

$$ x^2 - 2x + 1 + y^2 = 1 \quad\Longrightarrow\quad (x-1)^2 + y^2 = 1 $$

Answer. A circle of radius $1$ centered at $(1, 0)$.

Example 4 · Rose petals: how many petals does $r = \cos(5\theta)$ have, and where?

Step 1. $n = 5$ is odd, so the curve has $n = 5$ petals.

Step 2. A petal's tip lies where $r$ is maximum, i.e. $\cos(5\theta) = 1$:

$$ 5\theta = 0,\, 2\pi,\, 4\pi,\, 6\pi,\, 8\pi \quad\Longrightarrow\quad \theta = 0,\, \tfrac{2\pi}{5},\, \tfrac{4\pi}{5},\, \tfrac{6\pi}{5},\, \tfrac{8\pi}{5} $$

Answer. $5$ petals at angles separated by $72°$.

Example 5 · A real-world cardioid: where is a cardioid mic deaf?

A directional microphone has the polar sensitivity pattern $r(\theta) = 1 + \cos\theta$. Find the angle of maximum sensitivity, and the angle where it's completely deaf.

Max sensitivity. $1 + \cos\theta$ is maximized when $\cos\theta = 1$, i.e. $\theta = 0$. There $r = 2$ — twice the side-pickup level. The mic is most sensitive directly in front.

Deaf direction. $1 + \cos\theta = 0$ when $\cos\theta = -1$, i.e. $\theta = \pi$. There $r = 0$. The mic is completely deaf to sounds directly behind it.

That asymmetry — pickup in front, rejection behind — is the entire reason cardioid mics dominate podcasting and live vocals. The geometry of the polar equation is the engineering spec.

Sources & further reading

The catalog of polar curves and the conversion machinery are standard across every precalculus and calculus textbook. The links below are the ones to reach for when this page has done its job and you want either rigor, a different angle, or more curves.

Test your understanding

A quiz that builds from easy to hard. Pick an answer to get instant feedback and a worked explanation. Your progress is saved in this browser — come back anytime to continue.

Question 1 of 24
0 correct