Multivariable Calculus — Topic 04

Polar Coordinates
A Better System for Circles & Spirals

Cartesian coordinates struggle with curves that have natural rotational symmetry. Polar coordinates describe every point by a distance r from the origin and an angle θ from the positive x-axis, making circles, spirals, rose curves, and cardioids as simple to write as a straight line.

(r,θ)Polar Point
10Worked Examples
6Polar Curve Types
10Quiz Questions
Share this page
On This Page
  1. Why Use Polar Coordinates?
  2. The Polar Coordinate System
  3. Converting Between Polar and Cartesian
  4. Symmetry Tests for Polar Curves
  5. Common Polar Curves: A Visual Gallery
  6. Area Enclosed by a Polar Curve
  7. Arc Length of a Polar Curve
  8. Fully Worked Examples
  9. Common Mistakes
  10. 10-Question Quiz

§ 01Why Use Polar Coordinates?

Some curves are almost impossible to describe with y as a function of x, yet they have a devastatingly simple polar equation. A circle of radius 3 centred at the origin is x² + y² = 9 in Cartesian coordinates, but just r = 3 in polar. A four-petalled rose is a tangle in Cartesian form; in polar, it is r = cos(2θ).

The key insight is that Cartesian coordinates are built around rectangular grids, they naturally describe objects aligned with horizontal and vertical directions. Polar coordinates are built around rotation: they naturally describe objects with circular or angular symmetry. For curves that "spin outward" from the origin (spirals, roses, cardioids, lemniscates), polar coordinates give equations that are not just simpler to write but easier to integrate, differentiate, and visualise.

In multivariable calculus, polar coordinates become indispensable when evaluating double integrals over circular regions. The change-of-variables formula introduces the Jacobian factor r, transforming complicated Cartesian integrals into straightforward iterated integrals. The famous Gaussian integral, the foundation of probability theory, is essentially impossible without switching to polar coordinates.

The Fundamental Trade-off Cartesian coordinates give every point in the plane a unique address (x, y). Polar coordinates are more expressive for circular shapes, but at a cost: the same point can have infinitely many polar representations — (r, θ), (r, θ + 2π), (−r, θ + π), etc. Keeping track of this non-uniqueness is the main source of errors in polar work.

§ 02The Polar Coordinate System

A point P in the plane is described in polar coordinates by an ordered pair (r, θ), where:

r — the radial coordinate
r = distance from the origin to P
r can be any real number. If r > 0, P is in the direction θ. If r < 0, P is in the direction θ + π (reflected through the origin). If r = 0, the point is at the origin regardless of θ.
θ — the angular coordinate
θ = angle from positive x-axis, measured anticlockwise
θ can be any real number. Adding 2π to θ returns to the same point. Positive θ is anticlockwise; negative θ is clockwise.
Figure 01 — The Polar Coordinate System
P = (r, θ) r θ x y O r cosθ = x r sinθ = y
Point P at polar coordinates (r, θ). The radial distance r is the length of the arrow from the origin O. The angle θ is measured anticlockwise from the positive x-axis. The dashed lines show how the Cartesian coordinates x = r cosθ and y = r sinθ arise from right-triangle geometry.

Non-Uniqueness of Polar Representations

Unlike Cartesian coordinates, every point has infinitely many polar representations. The point (2, π/3) is the same as (2, π/3 + 2π), (2, π/3 − 2π), and also (−2, π/3 + π). This non-uniqueness must be handled carefully when finding intersections of polar curves, you must check all representations, not just the ones your algebra produces.

Equivalent Representations For any point P = (r, θ): the pairs (r, θ + 2nπ) for any integer n all represent P. Additionally, (−r, θ + π) also represents P. The origin (0, 0) is represented by (0, θ) for any θ whatsoever.

§ 03Converting Between Polar and Cartesian

The conversion formulas follow directly from right-triangle trigonometry applied to the diagram above. They are among the most-used formulas in all of calculus:

Core Conversion Formulas
x = r cosθ     y = r sinθ r² = x² + y²     tanθ = y/x

Note: when computing θ = arctan(y/x), always check the quadrant of (x, y), arctan only returns values in (−π/2, π/2), so you may need to add π for points in quadrants II or III.

GoalFormulaNotes
Polar → Cartesian x = r cosθ,  y = r sinθ Direct substitution. Always works.
Cartesian → Polar (r) r = √(x² + y²) Always non-negative if you want the principal value.
Cartesian → Polar (θ) θ = atan2(y, x) Use atan2 (or check quadrant manually). Range: (−π, π].
r² in expressions r² = x² + y² Useful when converting x² + y² in Cartesian equations.
Example 01 Converting a Cartesian point to polar coordinates

Convert the point (−√3, 1) from Cartesian to polar coordinates, giving θ ∈ [0, 2π).

Find r
r = √(3 + 1) = √4 = 2
Find θ

tanθ = 1/(−√3), so θ = arctan(−1/√3). The basic angle is π/6 (30°), but (−√3, 1) is in Quadrant II, so:

θ = π − π/6 = 5π/6
Result
(r, θ) = (2, 5π/6)

Verify: x = 2cos(5π/6) = 2·(−√3/2) = −√3 ✓
y = 2sin(5π/6) = 2·(1/2) = 1 ✓

Example 02 Converting a polar equation to Cartesian form

Convert r = 4sinθ to Cartesian form and identify the curve.

Multiply both sides by r
r² = 4r sinθ
Substitute
x² + y² = 4y

Use r² = x² + y² and r sinθ = y.

Complete the square
x² + (y² − 4y + 4) = 4 x² + (y − 2)² = 4
Result
Circle: centre (0, 2), radius 2

The polar equation r = 4sinθ describes a circle of radius 2 passing through the origin, centred at (0, 2).

§ 04Symmetry Tests for Polar Curves

Exploiting symmetry can cut your sketching work in half (or more). The three standard symmetry tests for r = f(θ) are:

Test 01
x-axis symmetry
Replace θ with −θ. If the equation is unchanged, the curve is symmetric about the polar axis (positive x-axis). Equivalently, replace (r, θ) with (r, −θ) or (−r, π − θ).
Test 02
y-axis symmetry
Replace θ with π − θ. If the equation is unchanged, the curve is symmetric about the line θ = π/2 (the y-axis). Alternatively, replace (r, θ) with (−r, −θ).
Test 03
Origin symmetry
Replace r with −r. If the equation is unchanged, the curve is symmetric about the origin (pole). Equivalently, replace θ with θ + π.
Important Caveat These tests are sufficient but not necessary. A curve can be symmetric even if the test fails, because the same point can be represented multiple ways in polar. If a test gives symmetry, you definitely have it. If a test fails, you may still have symmetry — always inspect the curve directly before concluding it is asymmetric.

§ 05Common Polar Curves — A Visual Gallery

The following six curve families appear constantly in calculus. Recognising them by their equation shape saves enormous time when sketching or setting up integrals.

§ 06Area Enclosed by a Polar Curve

The area formula in polar coordinates is derived by approximating the region with thin circular sectors rather than rectangles. A sector of radius r and angle dθ has area ½r²dθ. Summing these sectors gives the definite integral:

Area Formula — Polar Curve
A = ½ ∫αβ [r(θ)]² dθ

where the curve is traced from θ = α to θ = β. The limits must be chosen so the curve is traced exactly once: doubling up causes the area to be counted twice.

Area Between Two Polar Curves

When one curve r = f(θ) lies outside another r = g(θ) on [α, β], the area between them is:

Area Between Two Polar Curves
A = ½ ∫αβ ([f(θ)]² − [g(θ)]²) dθ

Finding the limits α, β requires solving f(θ) = g(θ): and checking all polar representations of intersection points.

Example 03 Area enclosed by a cardioid

Find the total area enclosed by the cardioid r = 2(1 + cosθ).

Set up limits

The cardioid is traced once for θ ∈ [0, 2π]. Using symmetry (x-axis), compute the upper half (θ ∈ [0, π]) and double:

A = 2 · ½ ∫₀π [2(1 + cosθ)]² dθ = ∫₀π 4(1 + cosθ)² dθ
Expand
(1 + cosθ)² = 1 + 2cosθ + cos²θ = 1 + 2cosθ + ½(1 + cos2θ) = 3/2 + 2cosθ + ½cos2θ
Integrate
A = 4 ∫₀π (3/2 + 2cosθ + ½cos2θ) dθ = 4 [3θ/2 + 2sinθ + ¼sin2θ]₀π = 4 (3π/2 + 0 + 0) = 6π
Result
A = 6π ≈ 18.85
Example 04 Area of one petal of a rose curve

Find the area of one petal of the four-petalled rose r = 3cos(2θ).

Find petal limits

The right-most petal is traced when r ≥ 0 and θ ∈ [−π/4, π/4]. At θ = ±π/4: cos(2·π/4) = cos(π/2) = 0 → r = 0 (petal tip returns to origin).

Apply formula
A = ½ ∫−π/4π/4 [3cos(2θ)]² dθ = (9/2) ∫−π/4π/4 cos²(2θ) dθ
Use identity
cos²(2θ) = ½(1 + cos4θ) A = (9/4) ∫−π/4π/4 (1 + cos4θ) dθ = (9/4)[θ + ¼sin4θ]−π/4π/4 = (9/4)(π/4 + 0 + π/4 − 0) = (9/4)(π/2) = 9π/8
Result
Area of one petal = 9π/8

Total area of all four petals = 4 × 9π/8 = 9π/2.

Example 05 Area between two polar curves

Find the area inside r = 3sinθ but outside r = 1 + sinθ.

Find intersections
3sinθ = 1 + sinθ → 2sinθ = 1 → sinθ = ½ θ = π/6 and θ = 5π/6
Set up integral

On [π/6, 5π/6], r = 3sinθ is the outer curve and r = 1 + sinθ is the inner curve.

A = ½ ∫π/65π/6 [(3sinθ)² − (1 + sinθ)²] dθ
Expand integrand
9sin²θ − (1 + 2sinθ + sin²θ) = 8sin²θ − 2sinθ − 1 = 8·½(1−cos2θ) − 2sinθ − 1 = 3 − 4cos2θ − 2sinθ
Integrate
A = ½[3θ − 2sin2θ + 2cosθ]π/65π/6 = π
Result
A = π

§ 07Arc Length of a Polar Curve

To find the arc length of a polar curve r = f(θ) from θ = α to θ = β, we use the parametric arc length formula with x(θ) = r cosθ and y(θ) = r sinθ:

Arc Length Formula — Polar Curve
L = ∫αβ √(r² + (dr/dθ)²) dθ

Derivation: dx/dθ = (dr/dθ)cosθ − r sinθ and dy/dθ = (dr/dθ)sinθ + r cosθ. Then (dx/dθ)² + (dy/dθ)² = r² + (dr/dθ)², giving the formula above after simplification using sin² + cos² = 1.

Example 06 Arc length of the cardioid r = a(1 − cosθ)

Find the total arc length of the cardioid r = a(1 − cosθ) (a > 0).

Compute dr/dθ
dr/dθ = a sinθ
Form r² + (dr/dθ)²
r² + (dr/dθ)² = a²(1−cosθ)² + a²sin²θ = a²(1 − 2cosθ + cos²θ + sin²θ) = a²(2 − 2cosθ) = 2a²(1 − cosθ)
Simplify √

Use the identity 1 − cosθ = 2sin²(θ/2):

√(2a²·2sin²(θ/2)) = 2a|sin(θ/2)|

For θ ∈ [0, 2π], sin(θ/2) ≥ 0, so |sin(θ/2)| = sin(θ/2).

Integrate
L = ∫₀ 2a sin(θ/2) dθ = 2a[−2cos(θ/2)]₀ = 2a(−2cos π + 2cos 0) = 2a(2 + 2) = 8a
Result
L = 8a
Example 07 Arc length of the Archimedean spiral r = θ for θ ∈ [0, 2π]

Find the length of the spiral r = θ for 0 ≤ θ ≤ 2π.

Set up

dr/dθ = 1, so r² + (dr/dθ)² = θ² + 1.

L = ∫₀ √(θ² + 1) dθ
Evaluate

Using the standard result ∫√(θ²+1)dθ = ½[θ√(θ²+1) + ln|θ + √(θ²+1)|] + C:

L = ½[2π√(4π²+1) + ln(2π + √(4π²+1))] ≈ ½[2π·6.361 + ln(6.361 + 2π)] ≈ 21.26
Result
L = ½[2π√(4π²+1) + ln(2π + √(4π²+1))] ≈ 21.26

§ 08Further Worked Examples

Example 08 Converting a Cartesian equation to polar form

Convert x² + y² − 6x = 0 to polar form and describe the curve.

Substitute

Replace x² + y² with r² and x with r cosθ:

r² − 6r cosθ = 0
Factorise
r(r − 6cosθ) = 0

So r = 0 (the origin) or r = 6cosθ.

Polar form
r = 6cosθ

This is a circle of radius 3 centred at the Cartesian point (3, 0). The original equation x² + y² − 6x = 0 completes the square to (x−3)² + y² = 9, confirming this.

Example 09 Testing symmetry of r = sin(3θ)

Test the three-petalled rose r = sin(3θ) for x-axis, y-axis, and origin symmetry.

x-axis test

Replace θ → −θ: r = sin(−3θ) = −sin(3θ) ≠ sin(3θ). Test fails, but check (−r, −θ): −r = sin(−3θ) = −sin(3θ), so r = sin(3θ). The curve IS symmetric about the x-axis via the second form.

y-axis test

Replace θ → π − θ: sin(3(π−θ)) = sin(3π − 3θ) = sin(3π)cos(3θ) − cos(3π)sin(3θ) = 0 + sin(3θ) = sin(3θ). Test passes → symmetric about y-axis.

Origin test

Replace r → −r: −r = sin(3θ) → r = −sin(3θ) ≠ sin(3θ). Not origin-symmetric (the three petals are not reflected through the origin to give the same curve).

Conclusion

r = sin(3θ) is symmetric about both coordinate axes. It has 3 petals, all traced as θ goes from 0 to π. Total area = 3 × (½ ∫₀π/3 sin²(3θ) dθ) = 3π/4 (for a = 1).

Example 10 Total area enclosed by the lemniscate r² = 4cos(2θ)

Find the total area enclosed by the lemniscate r² = 4cos(2θ).

Find valid θ range

r² ≥ 0 requires cos(2θ) ≥ 0. This holds for θ ∈ [−π/4, π/4] ∪ [3π/4, 5π/4]. By symmetry, compute the right lobe (θ ∈ [−π/4, π/4]) and double.

Apply formula
A = 2 · ½ ∫−π/4π/4 r² dθ = ∫−π/4π/4 4cos(2θ) dθ
Integrate
= 4 [½sin(2θ)]−π/4π/4 = 2[sin(π/2) − sin(−π/2)] = 2[1 − (−1)] = 4
Result
Total area = 4

For the general lemniscate r² = a²cos(2θ), the total area is a², a strikingly clean result.

§ 09Common Mistakes

Mistake 1: Wrong limits when computing area The most common error is integrating over [0, 2π] for curves that are completed in [0, π] (like r = sin(nθ) with n odd). This double-traces the curve and doubles the area. Always sketch the curve first and determine when r returns to zero — that endpoint is your upper limit for one full tracing.
Mistake 2: Missing intersection points at the origin Two polar curves can intersect at the origin even if setting their equations equal gives no solution — because (0, θ₁) and (0, θ₂) represent the same point for any θ₁, θ₂. When finding the area between two curves, always check manually whether both curves pass through the origin.
Mistake 3: Forgetting the factor ½ in the area formula The polar area formula is A = ½∫r²dθ, not ∫r²dθ. The ½ comes from the area of a circular sector (½r²Δθ). Dropping the ½ doubles your answer.
Mistake 4: Applying the symmetry tests as if they are "if and only if" The standard three symmetry tests are only sufficient conditions. A curve can be symmetric even if the test fails — because the same curve can be described by multiple polar equations. Always check both forms of each test, and inspect the curve visually when in doubt.
Mistake 5: Wrong quadrant when converting to polar angle arctan(y/x) only gives angles in (−π/2, π/2). For points in quadrants II and III (where x < 0), you must add π to the arctangent result. A reliable method is to use atan2(y, x) or to first determine the quadrant from the signs of x and y, then compute the reference angle.
Strategy Tip: Always Sketch First Before setting up any polar integral, draw a rough sketch of the curve. Mark where r = 0 (the curve passes through the origin) and where r is maximum. Identify which region you want. A 30-second sketch prevents the majority of limit-choice errors.

§ 10Test Your Understanding

Ten questions spanning conversions, curve identification, symmetry, area calculations, and arc length. Work each one through before revealing the explanation.

10-Question Quiz
Polar Coordinates

Cookie Settings