What Are Polar Coordinates?
Polar coordinates are a way to describe a point in the plane using distance and angle instead of horizontal and vertical positions. Every point is specified by a pair (r, θ), where r is the distance from the origin (called the pole) and θ is the angle measured counterclockwise from the positive x-axis (called the polar axis).
(x, y), which describe position by how far right and up from the origin. Both systems describe the same plane — they're just different ways to name points.Polar coordinates are especially useful when a problem has circular or rotational symmetry. Describing a circle, spiral, or rotating object is often dramatically simpler in polar coordinates than in rectangular. For example, the equation of a unit circle is x² + y² = 1 in rectangular but simply r = 1 in polar.
Unlike rectangular coordinates, polar coordinates are not unique. The point (2, π/4) is the same as (2, π/4 + 2π), (2, π/4 − 2π), and even (−2, π/4 + π) — because adding 2π to the angle gives the same direction, and negating r with an angle shift of π lands at the same spot. This multi-representation is one of the first things to get comfortable with.
Converting Between Polar and Rectangular
The conversions follow directly from right-triangle trigonometry.
x = r cos θ, y = r sin θ. Rectangular to polar: r = √(x² + y²), θ = arctan(y/x) (with quadrant adjustment based on the signs of x and y).Convert (4, π/3) to rectangular.
x = 4 cos(π/3) = 4 · (1/2) = 2.
y = 4 sin(π/3) = 4 · (√3/2) = 2√3.
(2, 2√3)Convert (−3, 3) to polar.
r = √((−3)² + 3²) = √18 = 3√2.
θ = arctan(3/(−3)) = arctan(−1). Since (−3, 3) is in Quadrant II (x negative, y positive), θ = 3π/4, not −π/4.
(3√2, 3π/4)Quadrant rules for θ
| Quadrant | Adjustment |
|---|---|
| Q1 | Use arctan(y/x) directly |
| Q2 | Add π |
| Q3 | Add π |
| Q4 | Add 2π (or use a negative angle) |
Always check the quadrant — arctan alone cannot distinguish between (−3, 3) and (3, −3) even though they're in different quadrants.
Polar Equations of Common Shapes
Many shapes have simpler equations in polar than in rectangular.
| Shape | Polar Equation | Notes |
|---|---|---|
| Circle centered at origin | r = a | A circle of radius a. |
| Circle centered on the x-axis | r = 2a cos θ | Passes through the origin with center at (a, 0). |
| Circle centered on the y-axis | r = 2a sin θ | Passes through the origin with center at (0, a). |
| Horizontal line | r sin θ = b | Equivalent to y = b. |
| Vertical line | r cos θ = a | Equivalent to x = a. |
| Line through origin | θ = α | Where α is a constant angle. |
| Cardioid | r = a(1 + cos θ) or r = a(1 + sin θ) | A heart-shaped curve. |
| Rose curves | r = a cos(nθ) or r = a sin(nθ) | If n is odd, the rose has n petals; if n is even, it has 2n petals. |
| Lemniscate | r² = a² cos(2θ) | A figure-eight shape. |
| Spiral of Archimedes | r = aθ | A spiral that grows with the angle. |
These shapes appear in physics, engineering, and computer graphics, and recognizing their polar forms saves enormous time on graphing problems.
Graphing Polar Equations
To graph a polar equation r = f(θ), make a table of values for θ (usually in increments of π/6 or π/12), compute the corresponding r values, and plot each (r, θ) point. Connect the points smoothly.
Tips for accurate graphs
- Cover a full rotation
Include full rotation
θ ∈ [0, 2π]unless the curve is periodic with smaller period. - Handle negative r values
Pay attention to when
ris negative — these points are plotted in the opposite direction. - Mark where r = 0
Note where
r = 0— the curve passes through the origin at those angles. - Use symmetry
If replacing
θwith−θleaves the equation unchanged, the curve is symmetric about the x-axis. If replacingθwithπ − θleaves it unchanged, symmetric about the y-axis. If replacingθwithπ + θleaves it unchanged, symmetric about the origin.
Graph r = 2 cos θ.
At θ = 0: r = 2, point (2, 0).
At θ = π/4: r = √2, point (√2, π/4).
At θ = π/2: r = 0, point at origin.
At θ = 3π/4: r = −√2, point at (√2, 3π/4 + π) = (√2, 7π/4).
Continuing, you trace out a circle of radius 1 centered at (1, 0).
Circle of radius 1 centered at (1, 0)This confirms the formula: r = 2a cos θ gives a circle through the origin with center (a, 0).
Polar Equations to Rectangular (and Back)
Sometimes you need to convert a whole equation between polar and rectangular forms, not just a single point.
x = r cos θ, y = r sin θ, r² = x² + y², and (when useful) tan θ = y/x.Convert r = 2 cos θ.
Multiply both sides by r: r² = 2r cos θ.
Substitute: x² + y² = 2x.
Rearrange: x² − 2x + y² = 0.
Complete the square: (x − 1)² + y² = 1.
Circle of radius 1 centered at (1, 0)This confirms our earlier graph.
Convert x + y = 4.
Substitute: r cos θ + r sin θ = 4, so r(cos θ + sin θ) = 4.
r = 4/(cos θ + sin θ)Convert r = 4 sin θ.
Multiply both sides by r: r² = 4r sin θ.
Substitute: x² + y² = 4y.
Rearrange: x² + y² − 4y = 0.
Complete the square: x² + (y − 2)² = 4.
Circle of radius 2 centered at (0, 2)The key trick is usually to multiply both sides by r so you can use r² = x² + y².
Real-World Applications
Polar coordinates are far from abstract — they appear throughout science and engineering whenever rotational or circular symmetry is involved.
| Field | Application |
|---|---|
| Navigation and radar | Radar displays use polar coordinates natively. A blip at (150 km, 30°) means 150 km away at a bearing of 30°. Conversion to rectangular happens only when integrating with mapping software. |
| Physics — circular motion | Describing the position of an object moving in a circle is trivial in polar (r = constant, θ varies with time) and painful in rectangular. |
| Engineering — antenna patterns | Antenna radiation patterns are standardly plotted in polar because they show power as a function of direction. |
| Robotics | Robotic arms with rotating joints naturally operate in polar or similar angular coordinate systems. |
| Architecture and design | Domes, spirals, and rotational ornaments are drawn and modeled in polar. |
| Mathematics — complex analysis | Complex numbers in polar form enable De Moivre's theorem and make multiplication, exponentiation, and root-finding dramatically easier. |
If you're working through polar coordinate problems and want to check your conversions or graph interpretations, scan them with Solver AI for step-by-step verification.