28 min read

In Cartesian coordinates a point is named by two distances: how far right, how far up. That is the right language for a city laid out in a grid, for the graph of $y = f(x)$, for anything built on the perpendicular crossing of horizontal and vertical.

Prerequisites

  • chapter-25-parametric-curves

Learning Objectives

  • Convert between polar and Cartesian coordinates, handling quadrants and negative $r$
  • Sketch standard polar curves: circle, cardioid, limaçon, rose, spiral, lemniscate
  • Count the petals of a rose curve $r = \cos(n\theta)$
  • Find the slope $dy/dx$ of a polar curve
  • Compute area enclosed by a polar curve using the sector formula $\tfrac12\int r^2\,d\theta$
  • Compute area between two polar curves
  • Compute arc length of a polar curve
  • Apply polar coordinates to orbital mechanics and planetary orbits

Polar Coordinates: When Angles Are More Natural Than Lines

In Cartesian coordinates a point is named by two distances: how far right, how far up. That is the right language for a city laid out in a grid, for the graph of $y = f(x)$, for anything built on the perpendicular crossing of horizontal and vertical.

But many of the most beautiful and most important curves in nature are not stories about horizontal and vertical position. They are stories about angle. A planet sweeping around the Sun, the spiral of a nautilus shell, the radiation pattern of an antenna, the petals of a flower — each of these is organized around a center, and each is awkward to describe with $x$ and $y$. For them, a second coordinate system is not a curiosity but a necessity.

In polar coordinates a point in the plane is named by the pair $(r, \theta)$:

  • $r$ is the radial coordinate — the distance from a fixed center called the pole (the origin).
  • $\theta$ is the angular coordinate — the angle, measured counterclockwise from a fixed ray called the polar axis (the positive $x$-axis), of the direction in which the point lies.

This chapter builds polar coordinates from the ground up: how to convert to and from Cartesian, how to graph the standard polar curves, how to find the slope of a polar curve, and — the calculus payoff — how to compute area and arc length in polar form. The area formula will surprise you. It is not $\int y\,dx$ in disguise; it comes from chopping a region into thin pie slices, and we will derive it from the geometry of a circular sector rather than borrow it. The chapter closes with the application that made polar coordinates indispensable to physics: the motion of the planets.

This is also the place where one of the book's deepest themes comes forward. Geometry and algebra are inseparable — but the algebra you get depends entirely on which coordinates you choose. The right coordinate system is one that matches the symmetry of the problem. When symmetry is rotational, polar wins.


26.1 The Polar Coordinate System

A point $P$ in the plane has polar coordinates $(r, \theta)$ when $r$ is its distance from the pole and $\theta$ is the angle (counterclockwise from the polar axis) of the ray from the pole through $P$.

So $(2, \pi/3)$ means: face along the polar axis, rotate $60°$ counterclockwise, then walk a distance $2$. The point $(3, \pi/2)$ sits three units straight up. The point $(1, \pi)$ sits one unit to the left.

Geometric Intuition. Cartesian graph paper is a grid of squares; you find a point by counting over and up. Polar graph paper is a spider's web — concentric circles ($r = \text{const}$) crossed by rays out of the center ($\theta = \text{const}$). You find a point by choosing a ring and a spoke. Curves that hug a ring (circles) or a spoke (radial lines) have one-line polar equations, while the same curves in Cartesian form can be clumsy. Choosing coordinates is choosing which shapes get to be simple.

Polar coordinates are not unique

This is the first genuinely new idea. In Cartesian coordinates every point has exactly one name. In polar coordinates a point has infinitely many.

  • Adding a full turn changes nothing: $(r, \theta)$ and $(r, \theta + 2\pi)$ are the same point.
  • The pole itself is $(0, \theta)$ for every $\theta$ — at the center, direction is meaningless.
  • We even allow negative $r$. The convention is that a negative radius means "measure the angle, then walk backward": $(-r, \theta)$ is the same point as $(r, \theta + \pi)$.

The negative-$r$ convention looks like a nuisance, and at first it is. But it pays off when graphing: a single equation like $r = \cos(3\theta)$ produces negative values of $r$ for some $\theta$, and the convention lets those values draw real petals instead of being thrown away.

Warning. Non-uniqueness has real consequences. When you solve a polar equation, "is $r = -1$ a valid answer?" usually has answer yes — it is a genuine point. When you intersect two polar curves, two curves can cross at a point that the equations never agree on, because the crossing point has different $(r,\theta)$ names on each curve (including the pole, where one curve might reach with $r=0, \theta = \pi/2$ and the other with $r = 0, \theta = 0$). Always check the pole separately when finding intersections, and sketch.

Conversion between polar and Cartesian

The bridge between the two systems is right-triangle trigonometry. Drop a perpendicular from $P$ to the $x$-axis: the horizontal leg is $x$, the vertical leg is $y$, and the hypotenuse is $r$ at angle $\theta$. Reading off the triangle:

$$\boxed{\,x = r\cos\theta, \qquad y = r\sin\theta\,}$$

These convert polar to Cartesian directly. Going the other way, Cartesian to polar, invert:

$$r = \sqrt{x^2 + y^2}, \qquad \tan\theta = \frac{y}{x}.$$

The radius is just the distance formula. The angle, however, needs care: $\theta = \arctan(y/x)$ alone cannot tell which side of the plane you are on, because $\arctan$ only returns angles in $(-\pi/2, \pi/2)$. The point $(-1,-1)$ and the point $(1,1)$ have the same ratio $y/x = 1$ but lie in opposite quadrants. The honest formula is the four-quadrant arctangent, written atan2(y, x) in nearly every programming language and on most calculators, which inspects the signs of $x$ and $y$ to land in the correct quadrant.

Worked Example 26.1.1 — Both directions.

Polar to Cartesian. Convert $(4, 2\pi/3)$. Here $x = 4\cos(2\pi/3) = 4\cdot(-\tfrac12) = -2$ and $y = 4\sin(2\pi/3) = 4\cdot\tfrac{\sqrt3}{2} = 2\sqrt3 \approx 3.46$. So the point is $(-2,\,2\sqrt3)$ — second quadrant, as the angle $120°$ promised.

Cartesian to polar. Convert $(-1, -1)$. The radius is $r = \sqrt{1+1} = \sqrt2$. The point is in the third quadrant, so the angle is $\theta = \pi + \arctan\!\frac{-1}{-1} = \pi + \tfrac{\pi}{4} = \tfrac{5\pi}{4}$ (equivalently $-\tfrac{3\pi}{4}$). Naively writing $\arctan(\tfrac{-1}{-1}) = \arctan(1) = \pi/4$ would have placed the point in the first quadrant — wrong. This is exactly the trap atan2 exists to avoid.

Common Pitfall. Many students compute $\theta = \arctan(y/x)$ and stop, landing half their points in the wrong quadrant. The ratio $y/x$ destroys sign information: $\tfrac{1}{1}$, $\tfrac{-1}{-1}$, and any pair with the same ratio collapse to one arctangent value. Always check which quadrant $(x,y)$ lives in and adjust by $\pm\pi$ as needed — or just use atan2(y, x), which does the bookkeeping for you.

Check Your Understanding. Convert the Cartesian point $(0, -3)$ to polar coordinates with $r > 0$ and $0 \le \theta < 2\pi$.

AnswerThe point is three units straight down. So $r = 3$ and the direction is straight down, $\theta = \tfrac{3\pi}{2}$. (Notice $\arctan(-3/0)$ is undefined — the formula breaks exactly on the $y$-axis, where you must read the geometry directly.)

Converting equations, not just points

The same substitutions convert whole equations. A curve given in one system becomes a curve in the other by substituting $x = r\cos\theta$, $y = r\sin\theta$ (or $r^2 = x^2+y^2$, etc.).

For instance, the Cartesian circle $x^2 + y^2 = 9$ becomes $r^2 = 9$, i.e. $r = 3$ — three symbols instead of a quadratic. The vertical line $x = 2$ becomes $r\cos\theta = 2$, or $r = 2\sec\theta$. Going the other way, the innocent polar equation $r = 2\cos\theta$ hides a circle: multiply both sides by $r$ to get $r^2 = 2r\cos\theta$, then substitute to get $x^2 + y^2 = 2x$, which completes the square to $(x-1)^2 + y^2 = 1$ — a circle of radius $1$ centered at $(1,0)$, passing through the pole. The polar form was hiding a perfectly ordinary circle in a strange costume.

The trick in that last conversion — multiply by $r$ to create $r^2$ and $r\cos\theta$, then substitute — is the workhorse move for turning polar equations into Cartesian ones, because $r^2 = x^2 + y^2$, $r\cos\theta = x$, and $r\sin\theta = y$ are the only three substitution patterns you ever need. When a polar equation contains a bare $r$ (odd power), manufacture an even power by multiplying through; when it contains $\cos\theta$ or $\sin\theta$, pair them with an $r$ to form $x$ or $y$. With practice the conversions become as automatic as reading.


26.2 A Field Guide to Polar Curves

The fun of polar coordinates is the gallery of curves whose equations are short and whose graphs are striking. We organize them by family.

Circles and lines

Circle centered at the pole: $r = c$. Every point at distance $c$ — exactly a circle of radius $c$.

Circle through the pole, centered on an axis: $r = 2a\cos\theta$ is a circle of radius $a$ centered at $(a, 0)$; $r = 2a\sin\theta$ is a circle of radius $a$ centered at $(0, a)$. (We just derived the first of these with $a=1$.) A small change in the equation — cosine versus sine — rotates the circle a quarter turn.

Line through the pole: $\theta = c$, a fixed direction, all radii. Vertical line $x = a$: $r = a\sec\theta$. Horizontal line $y = b$: $r = b\csc\theta$.

Cardioids and limaçons

The limaçon (French for "snail") is the family

$$r = b + a\cos\theta \qquad (\text{or with } \sin\theta).$$

Its shape depends entirely on the ratio of $a$ to $b$:

  • $|a| > |b|$: an inner loop — the curve passes through the pole and crosses itself.
  • $|a| = |b|$: a cardioid — the loop shrinks to a single sharp point (a cusp) at the pole. Heart-shaped.
  • $|b|/2 < |a| < |b|$: a dimpled limaçon — a dent but no loop.
  • $|a| \le |b|/2$: a convex limaçon — smooth, no dimple.

The cardioid $r = a(1 + \cos\theta)$ is the most important member. It has a cusp at the pole (reached when $\theta = \pi$, where $r = 0$) and its maximum reach $r = 2a$ at $\theta = 0$. The sign and the trig function just rotate it: $r = a(1 - \cos\theta)$ points left, $r = a(1 + \sin\theta)$ points up.

Rose curves and the petal-counting rule

The rose curves are

$$r = a\cos(n\theta) \qquad\text{or}\qquad r = a\sin(n\theta),$$

and they look exactly like flowers. The number of petals follows a rule that catches everyone off guard the first time:

The Key Insight. For the rose $r = a\cos(n\theta)$ with $n$ a positive integer: if $n$ is odd, the curve has $n$ petals; if $n$ is even, it has $2n$ petals.

So $r = \cos(3\theta)$ has $3$ petals, but $r = \cos(2\theta)$ has $4$, and $r = \cos(4\theta)$ has $8$. Why the difference? When $n$ is odd, the second half of the trip around ($\theta$ from $\pi$ to $2\pi$) retraces the petals already drawn in the first half — the negative-$r$ convention makes them overlap. When $n$ is even, the second half draws a fresh set of petals in the gaps, doubling the count. This is one of those facts you should verify yourself by plotting, which we do in §26.4.

Common Pitfall. Students confidently predict that $r = \cos(4\theta)$ has $4$ petals because "$n = 4$." It has $8$. The rule is not "$n$ petals always" — it is $n$ petals for odd $n$ and $2n$ petals for even $n$. When in doubt, plot it.

Spirals

A spiral is a curve whose radius grows steadily as the angle increases.

  • Archimedean spiral: $r = a\theta$. The radius grows linearly with the angle, so successive loops are equally spaced — like a coiled rope or a vinyl record's groove.
  • Logarithmic spiral: $r = a\,e^{b\theta}$. The radius grows exponentially with the angle, so each loop is a fixed multiple larger than the last. This is the self-similar spiral: zoom in and you see the same shape forever. It is the spiral of the nautilus shell, the sunflower seed head, the spiral galaxy, and the eye of a hurricane.
  • Hyperbolic spiral: $r = a/\theta$. The radius shrinks as the angle grows, winding ever tighter toward the pole without reaching it.

Lemniscates

The lemniscate is a figure-eight through the pole. The Bernoulli lemniscate is

$$r^2 = a^2\cos(2\theta).$$

Because the equation gives $r^2$, the curve only exists where $\cos(2\theta) \ge 0$ — that is, on two opposite angular wedges — which is exactly why it forms two symmetric lobes meeting at the pole.

Historical Note. Many of these curves are ancient. Greek geometers studied the conchoid of Nicomedes and the cissoid of Diocles while trying to double the cube and trisect the angle with straightedge and compass. The cardioid and limaçon were named and analyzed by Étienne Pascal (father of Blaise) in the 1630s. The logarithmic spiral so enchanted Jacob Bernoulli (1654–1705) that he asked for one to be carved on his tombstone with the motto Eadem mutata resurgo — "Though changed, I rise again the same" — a tribute to its self-similarity. (The engraver, alas, carved an Archimedean spiral by mistake.)


26.3 The Slope of a Polar Curve

A polar curve $r = f(\theta)$ is best understood as a parametric curve, with $\theta$ as the parameter. Recall from Chapter 25 that a parametric curve $\big(x(\theta), y(\theta)\big)$ has slope $\dfrac{dy}{dx} = \dfrac{dy/d\theta}{dx/d\theta}$. We simply feed in the polar parametrization

$$x(\theta) = f(\theta)\cos\theta, \qquad y(\theta) = f(\theta)\sin\theta.$$

Differentiating each with the product rule (writing $r' = dr/d\theta = f'(\theta)$):

$$\frac{dx}{d\theta} = r'\cos\theta - r\sin\theta, \qquad \frac{dy}{d\theta} = r'\sin\theta + r\cos\theta.$$

Therefore

$$\boxed{\;\frac{dy}{dx} = \frac{r'\sin\theta + r\cos\theta}{r'\cos\theta - r\sin\theta}\;}$$

This is messier than $f'(x)$ in Cartesian, but it is purely mechanical: compute $r$ and $r'$ at the angle you care about, then plug in.

One special case is worth remembering. At the pole, where $r = f(\theta_0) = 0$, the slope formula collapses to $\dfrac{dy}{dx} = \dfrac{r'\sin\theta_0}{r'\cos\theta_0} = \tan\theta_0$. So the tangent line to the curve at the pole points in the direction $\theta = \theta_0$. This is the clean way to find the directions in which a rose's petals or a cardioid's cusp leave the origin: just solve $f(\theta) = 0$.

Check Your Understanding. In which directions does the rose $r = \cos(3\theta)$ leave the pole?

AnswerSet $r = 0$: $\cos(3\theta) = 0$ means $3\theta = \tfrac\pi2 + k\pi$, so $\theta = \tfrac\pi6, \tfrac\pi2, \tfrac{5\pi}{6}, \dots$. The petals leave the origin tangent to those directions — which is exactly the angular spacing ($60°$ apart) that you see in the three-petal flower. Solving $r = 0$ told us the orientation of the whole rose without sketching a single point.

Worked Example 26.3.1 — Tangent to a cardioid. For $r = 1 + \cos\theta$, find where the tangent line is horizontal. We need $dy/d\theta = 0$ (and $dx/d\theta \ne 0$). With $r' = -\sin\theta$, $$\frac{dy}{d\theta} = (-\sin\theta)\sin\theta + (1+\cos\theta)\cos\theta = -\sin^2\theta + \cos\theta + \cos^2\theta = 2\cos^2\theta + \cos\theta - 1,$$ using $\sin^2\theta = 1 - \cos^2\theta$. This factors as $(2\cos\theta - 1)(\cos\theta + 1) = 0$, giving $\cos\theta = \tfrac12$ (so $\theta = \pm\pi/3$) or $\cos\theta = -1$ (so $\theta = \pi$, the cusp). The horizontal tangents occur at $\theta = \pm\pi/3$; the point $\theta = \pi$ is the cusp, where the slope is genuinely undefined rather than horizontal.


26.4 Polar Curves in Code

Before doing calculus on these curves, let us see them. matplotlib has built-in polar plotting: pass projection='polar' and give it arrays of $\theta$ and $r$.

# Plot four signature polar curves and confirm the petal-counting rule.
import numpy as np
import matplotlib.pyplot as plt

theta = np.linspace(0, 2 * np.pi, 1000)

curves = {
    "Cardioid  r = 1 + cos θ":     1 + np.cos(theta),
    "Rose  r = cos(3θ)  [3 petals]": np.cos(3 * theta),
    "Rose  r = cos(4θ)  [8 petals]": np.cos(4 * theta),
    "Log spiral  r = e^{0.15θ}":    np.exp(0.15 * theta),
}

fig, axes = plt.subplots(1, 4, figsize=(18, 5), subplot_kw={"projection": "polar"})
for ax, (title, r) in zip(axes, curves.items()):
    ax.plot(theta, r)
    ax.set_title(title, fontsize=10)
plt.tight_layout()
plt.show()

# Count petals numerically: a petal corresponds to a maximal lobe where r > 0.
for n in (3, 4, 5, 6):
    r = np.cos(n * theta)
    # crossings from r<=0 to r>0 mark the start of each positive lobe
    starts = np.sum((r[:-1] <= 0) & (r[1:] > 0))
    print(f"n = {n}: positive lobes counted = {starts}")
# Output:
# n = 3: positive lobes counted = 3
# n = 4: positive lobes counted = 4   (+4 more from the negative-r lobes -> 8 total)
# n = 5: positive lobes counted = 5
# n = 6: positive lobes counted = 6   (+6 more -> 12 total)

Computational Note. The lobe count above tallies only the lobes where $r > 0$. For odd $n$ those are all the petals, so the printed numbers ($3$, $5$) are the full petal counts. For even $n$ the negative-$r$ lobes draw an equal number of additional petals in the gaps, so the true counts are $8$ and $12$ — exactly the "$2n$ for even $n$" rule. The cleanest confirmation is visual: run the plot and count the flower's petals directly. Hand computation builds the rule; the machine lets you watch it hold.


26.5 Area in Polar Coordinates

Here is the calculus heart of the chapter, and it requires us to abandon a habit. In Cartesian integration, area is built from thin vertical rectangles: $dA = y\,dx$. That decomposition is wrong for polar regions, because a polar region is organized around the pole, not around the $x$-axis. The natural slice of a polar region is not a rectangle but a thin circular sector — a pie slice radiating from the pole.

Deriving the formula from a sector

Picture a region bounded by the curve $r = f(\theta)$ and the two rays $\theta = \alpha$ and $\theta = \beta$. Slice it into many thin wedges, each spanning a tiny angle $d\theta$. One such wedge, at angle $\theta$, is almost a circular sector of radius $r = f(\theta)$ and angle $d\theta$.

What is the area of a full circular sector? A sector of radius $r$ and angle $\Delta\theta$ is the fraction $\frac{\Delta\theta}{2\pi}$ of the whole disk, so its area is

$$\frac{\Delta\theta}{2\pi}\cdot \pi r^2 = \frac{1}{2} r^2\,\Delta\theta.$$

Our thin wedge therefore has area $dA \approx \tfrac12 [f(\theta)]^2\,d\theta$. Summing all the wedges and passing to the limit turns the sum into an integral:

$$\boxed{\;A = \frac{1}{2}\int_\alpha^\beta [f(\theta)]^2\,d\theta = \frac{1}{2}\int_\alpha^\beta r^2\,d\theta\;}$$

The Key Insight. The factor of $\tfrac12$ and the $r^2$ are not arbitrary — they are the area of a circular sector, $\tfrac12 r^2\,d\theta$, written in the integral. Polar area is built from pie slices, not from rectangles. Whenever you see $\tfrac12 r^2$, hear "sector."

Geometric Intuition. Why $r^2$ and not $r$? Because a sector is two-dimensional in $r$: doubling the radius of a pie slice quadruples its area (twice as long and twice as wide at the arc). The radius enters the area twice — once for the length of the slice, once for the width of its arc, $r\,d\theta$. Multiplying $\tfrac12 \cdot r \cdot (r\,d\theta)$ gives $\tfrac12 r^2\,d\theta$.

A deeper reason, looking ahead

There is a second, more powerful way to see this same formula — as a double integral over the region with the polar area element $dA = r\,dr\,d\theta$. Integrating $\int_0^{f(\theta)} r\,dr = \tfrac12 [f(\theta)]^2$ over the radial direction first, then over $\theta$, reproduces our boxed formula exactly. The extra factor of $r$ in $dA = r\,dr\,d\theta$ — the reason a small polar "rectangle" has area $r\,dr\,d\theta$ and not $dr\,d\theta$ — is the Jacobian of the polar transformation. We will derive that factor carefully, and use it to integrate functions over polar regions, in Chapter 33 (change of variables); the area-only special case is everything we need here. (Polar double integrals themselves appear in Chapter 32.)

Worked examples, graduated

Worked Example 26.5.1 — Area inside a cardioid. Find the area enclosed by $r = 1 + \cos\theta$. The curve is traced once as $\theta$ runs from $0$ to $2\pi$, so $$A = \frac{1}{2}\int_0^{2\pi}(1+\cos\theta)^2\,d\theta = \frac{1}{2}\int_0^{2\pi}\big(1 + 2\cos\theta + \cos^2\theta\big)\,d\theta.$$ Use the standard values $\int_0^{2\pi}\cos\theta\,d\theta = 0$ and $\int_0^{2\pi}\cos^2\theta\,d\theta = \pi$ (the latter from $\cos^2\theta = \tfrac12(1+\cos 2\theta)$). Then $$A = \frac12\big(2\pi + 0 + \pi\big) = \frac{3\pi}{2}.$$

Worked Example 26.5.2 — One petal of a rose. Find the area of a single petal of $r = \cos(3\theta)$. A petal is traced where $\cos(3\theta) \ge 0$, which first happens for $-\tfrac{\pi}{6} \le \theta \le \tfrac{\pi}{6}$. So $$A = \frac12\int_{-\pi/6}^{\pi/6}\cos^2(3\theta)\,d\theta = \frac12\cdot\frac12\int_{-\pi/6}^{\pi/6}\big(1 + \cos(6\theta)\big)\,d\theta = \frac14\left[\theta + \frac{\sin(6\theta)}{6}\right]_{-\pi/6}^{\pi/6}.$$ At $\theta = \pm\pi/6$ the $\sin(6\theta) = \sin(\pm\pi) = 0$ term vanishes, leaving $A = \frac14\left(\tfrac{\pi}{6} + \tfrac{\pi}{6}\right) = \frac{\pi}{12}$. With three petals, the rose encloses $3\cdot\tfrac{\pi}{12} = \tfrac{\pi}{4}$ in total.

Common Pitfall — the limits of integration. The single most common polar-area error is integrating over the wrong $\theta$-range. For the petal above, integrating $\frac12\int_0^{2\pi}\cos^2(3\theta)\,d\theta$ would compute $\frac{\pi}{4}$ — the area of all three petals at once — not one petal, and worse, for an even-petaled rose this same range would trace each petal twice and double-count the area. Before integrating, ask: over what $\theta$-interval is this curve (or this piece of it) traced exactly once? Sketch first; integrate second.

Check Your Understanding. Find the area enclosed by the circle $r = 4\sin\theta$.

AnswerThis is a circle through the pole; it is traced once as $\theta$ goes from $0$ to $\pi$ (for $\theta \in (\pi, 2\pi)$, $\sin\theta < 0$ and the negative $r$ retraces the same circle). So $A = \tfrac12\int_0^\pi 16\sin^2\theta\,d\theta = 8\int_0^\pi \tfrac{1-\cos 2\theta}{2}\,d\theta = 4\big[\theta - \tfrac{\sin 2\theta}{2}\big]_0^\pi = 4\pi$. Check: $r = 4\sin\theta$ is a circle of radius $2$, and $\pi(2)^2 = 4\pi$. ✓ Integrating over $[0,2\pi]$ instead would have given $8\pi$ — exactly double, the pitfall above.


26.6 Area Between Two Polar Curves

To find the area between two polar curves $r = r_{\text{outer}}(\theta)$ and $r = r_{\text{inner}}(\theta)$, where $r_{\text{outer}} \ge r_{\text{inner}} \ge 0$ on $[\alpha,\beta]$, subtract the sector areas:

$$A = \frac{1}{2}\int_\alpha^\beta \Big( r_{\text{outer}}^2 - r_{\text{inner}}^2 \Big)\,d\theta.$$

This is the polar analog of "top curve minus bottom curve," but with squared radii under the sign because each piece is a sector. The work is in two steps: find where the curves intersect (to get the limits), then integrate the difference of squares over each region where the ordering is constant.

Worked Example 26.6.1 — Cardioid and circle. Find the area inside the cardioid $r = 1 + \cos\theta$ and outside the circle $r = 1$.

Step 1 — intersections. Set $1 + \cos\theta = 1$, so $\cos\theta = 0$, giving $\theta = \pm\tfrac{\pi}{2}$. Between these angles ($-\tfrac\pi2 < \theta < \tfrac\pi2$) we have $\cos\theta > 0$, so the cardioid lies outside the circle. That is the region we want.

Step 2 — integrate the difference of squares over $[-\tfrac\pi2, \tfrac\pi2]$: $$A = \frac12\int_{-\pi/2}^{\pi/2}\Big[(1+\cos\theta)^2 - 1^2\Big]\,d\theta = \frac12\int_{-\pi/2}^{\pi/2}\big(2\cos\theta + \cos^2\theta\big)\,d\theta.$$ Now $\int_{-\pi/2}^{\pi/2} 2\cos\theta\,d\theta = 2[\sin\theta]_{-\pi/2}^{\pi/2} = 2(1-(-1)) = 4$, and $\int_{-\pi/2}^{\pi/2}\cos^2\theta\,d\theta = \tfrac{\pi}{2}$. So $$A = \frac12\left(4 + \frac{\pi}{2}\right) = 2 + \frac{\pi}{4}.$$

Computational Note. It is worth confirming a hand area with scipy. For Example 26.6.1: from scipy.integrate import quad; A, _ = quad(lambda t: 0.5*((1+np.cos(t))**2 - 1), -np.pi/2, np.pi/2) returns 2.785398…, which matches $2 + \pi/4 = 2.785398…$ to machine precision. (The original draft of this section reported $\tfrac{\pi}{2}+2$ here — a factor-of-two slip in the cosine term; the verified value is $2 + \tfrac{\pi}{4}$.) The symmetric companion region — inside the circle but outside the cardioid, over $[\tfrac\pi2, \tfrac{3\pi}{2}]$ — works out to $2 - \tfrac{\pi}{4} \approx 1.215$, a positive area, as any genuine area must be.


26.7 Arc Length in Polar Coordinates

How long is a polar curve? Again we route through the parametric form of Chapter 25, where arc length is

$$L = \int_\alpha^\beta \sqrt{\left(\frac{dx}{d\theta}\right)^2 + \left(\frac{dy}{d\theta}\right)^2}\,d\theta.$$

Substitute $x = r\cos\theta$, $y = r\sin\theta$ and the derivatives from §26.3. Expanding the sum of squares (a satisfying computation in which the cross terms cancel):

$$\left(\frac{dx}{d\theta}\right)^2 + \left(\frac{dy}{d\theta}\right)^2 = (r'\cos\theta - r\sin\theta)^2 + (r'\sin\theta + r\cos\theta)^2 = (r')^2 + r^2.$$

The cross terms $\mp 2rr'\sin\theta\cos\theta$ cancel, and $\sin^2 + \cos^2 = 1$ does the rest. We are left with a clean formula:

$$\boxed{\;L = \int_\alpha^\beta \sqrt{\,r^2 + \left(\frac{dr}{d\theta}\right)^2\,}\;d\theta\;}$$

Geometric Intuition. The two terms under the root are the two ways a point on the curve moves as $\theta$ advances. The $r^2$ term is tangential motion — swinging around the pole, covering arc $r\,d\theta$. The $(r')^2$ term is radial motion — moving toward or away from the pole, covering $dr$. These two displacements are perpendicular (one along the circle, one along the spoke), so the Pythagorean theorem combines them into the speed $\sqrt{r^2 + (r')^2}$. Arc length integrates speed, exactly as it did for parametric curves.

Worked Example 26.7.1 — Length of a cardioid. For $r = 1 + \cos\theta$ we have $r' = -\sin\theta$, so $$r^2 + (r')^2 = (1+\cos\theta)^2 + \sin^2\theta = 1 + 2\cos\theta + \cos^2\theta + \sin^2\theta = 2 + 2\cos\theta.$$ The half-angle identity $1 + \cos\theta = 2\cos^2(\theta/2)$ gives $2 + 2\cos\theta = 4\cos^2(\theta/2)$, so $\sqrt{r^2+(r')^2} = 2\,|\cos(\theta/2)|$. On $[0,\pi]$ the cosine is non-negative, and by the curve's symmetry the total length is twice the upper half: $$L = \int_0^{2\pi} 2\,|\cos(\theta/2)|\,d\theta = 2\int_0^{\pi} 2\cos(\theta/2)\,d\theta = 2\cdot\Big[4\sin(\theta/2)\Big]_0^{\pi} = 2\cdot 4 = 8.$$ A unit cardioid has arc length exactly $8$ — a clean integer from a curve full of trigonometry.

Worked Example 26.7.2 — Length of a logarithmic spiral. For $r = e^{\theta}$ on $[0, 2\pi]$, we have $r' = e^{\theta}$, so $\sqrt{r^2 + (r')^2} = \sqrt{2e^{2\theta}} = \sqrt2\, e^{\theta}$. Then $$L = \int_0^{2\pi}\sqrt2\,e^\theta\,d\theta = \sqrt2\,(e^{2\pi} - 1) \approx \sqrt2 \cdot 534.5 \approx 755.9.$$ The spiral grows so fast that two turns already cover hundreds of units of arc — the exponential at work. Approximation is the soul of calculus: even where no clean closed form survives, the integral pins the length down to as many digits as you like.

Real-World Application — Engineering a spiral ramp. A parking-garage ramp, a spiral staircase, or a coiled heat-exchanger tube is laid out as a polar spiral, and the manufacturer needs its true length — how much steel or concrete to order, how long the handrail must be. That length is exactly $\int \sqrt{r^2 + (r')^2}\,d\theta$. For an Archimedean ramp $r = a\theta$ rising over $N$ turns, the arc-length integral (which produces a logarithmic term — try it) tells the contractor the material to within a meter. Underestimate it and the rail comes up short on the top floor.


26.8 Application: Orbital Mechanics and Planetary Orbits

The reason polar coordinates earned a permanent place in physics is a single discovery: the orbit of a planet is a polar curve. When a small body moves under the gravitational pull of a much larger one at the origin, Newton's law of gravitation — a central force, depending only on the distance $r$ — has a solution that is astonishingly simple in polar form and hopelessly messy in Cartesian.

That solution is a conic section with the attracting body at one focus:

$$r = \frac{p}{1 + e\cos\theta},$$

where $e$ is the eccentricity and $p$ is a scale constant (the semi-latus rectum). The single equation contains every possible orbit:

eccentricity orbit shape physical meaning
$e = 0$ circle the idealized perfectly round orbit
$0 < e < 1$ ellipse a bound planet or moon
$e = 1$ parabola exact escape — a one-time visitor
$e > 1$ hyperbola an unbound flyby (e.g. interstellar 'Oumuamua)

This unification is Kepler's First Law: planets move in ellipses with the Sun at one focus. We state the conic-in-polar form here because it is the tool orbital mechanics needs; the full geometric study of ellipses, parabolas, and hyperbolas — directrices, foci, the relationship between $e$ and the axes — is the subject of Chapter 27.

For an elliptical orbit with semi-major axis $a$ and eccentricity $e$, the scale is $p = a(1 - e^2)$, and the two extreme distances are

$$r_{\min} = a(1-e) \ \ (\text{perihelion, closest}), \qquad r_{\max} = a(1+e) \ \ (\text{aphelion, farthest}).$$

Real-World Application — Earth's and Mercury's orbits. Earth's orbit has $a \approx 149.6$ million km (one astronomical unit) and $e \approx 0.0167$ — nearly circular. Plugging in, perihelion (early January) is about $147.1$ million km and aphelion (early July) about $152.1$ million km, a swing of only about $3\%$. Mercury, with $e \approx 0.206$, is far more elliptical: its distance from the Sun ranges from roughly $46$ to $70$ million km, a swing of about $50\%$. Mercury's orbit is also where Newton's theory first cracked — its perihelion precesses by an extra $43$ arc-seconds per century, a tiny discrepancy that Einstein's general relativity in 1915 explained exactly. Polar coordinates were the stage on which both Newtonian and relativistic celestial mechanics were written.

Kepler's Second Law is a polar-area statement

Polar area — the formula we derived in §26.5 — is not just a curiosity here; it is the content of Kepler's Second Law: a planet sweeps out equal areas in equal times. The area swept from angle $\theta_1$ to $\theta_2$ is exactly $\frac12\int_{\theta_1}^{\theta_2} r^2\,d\theta$. The statement that this area accumulates at a constant rate in time is the statement that

$$\frac{dA}{dt} = \frac12 r^2\frac{d\theta}{dt} = \text{constant},$$

which is precisely the conservation of angular momentum. Kepler's empirical "equal areas" law and Newton's conservation of angular momentum are the same equation, and the bridge between them is the polar area element $\tfrac12 r^2\,d\theta$. This is a beautiful instance of the book's recurring theme that calculus is the mathematics of change: the rate of change of swept area is a physical conservation law in disguise.

Real-World Application — Antenna radiation patterns (electrical engineering). A second field that lives in polar coordinates is antenna design. An antenna's radiation pattern $G(\theta)$ describes how much power it radiates in each direction, and it is always drawn as a polar plot. A simple dipole has a figure-eight pattern (lemniscate-like); a Yagi-Uda antenna (the classic rooftop TV aerial) has a sharp forward lobe; a phased array steers its beam electronically. Engineers compute the beamwidth and the total radiated power by integrating the pattern in polar form — $\int G(\theta)^2\,d\theta$-type integrals — exactly the machinery of this chapter. Calculus appears in every quantitative field: the same $\tfrac12\int r^2\,d\theta$ that gives a flower's petal its area gives an antenna its coverage.

Math Major Sidebar — Why the orbit equation is a conic. Where does $r = p/(1+e\cos\theta)$ come from? Starting from Newton's $\ddot{\mathbf r} = -\tfrac{GM}{r^2}\hat{\mathbf r}$, one introduces the substitution $u = 1/r$ and reparametrizes by $\theta$ instead of $t$ (legitimate because angular momentum $\ell = r^2\dot\theta$ is constant and nonzero). The radial equation transforms into the linear, constant-coefficient ODE $\dfrac{d^2u}{d\theta^2} + u = \dfrac{GM}{\ell^2}$, a driven harmonic oscillator in the variable $u(\theta)$. Its general solution is $u = \tfrac{GM}{\ell^2}\big(1 + e\cos\theta\big)$, and inverting $r = 1/u$ gives the conic. The miracle of central-force motion is that the messy nonlinear orbit becomes a simple harmonic oscillator the moment you switch to polar coordinates and the variable $1/r$. The right coordinates do not just simplify the picture — they linearize the physics.


26.9 Summary

Polar coordinates name a point by distance and direction from a center, and they are the natural language for any problem with rotational symmetry.

  • Coordinates: $(r,\theta)$ with $x = r\cos\theta$, $y = r\sin\theta$; inverting, $r = \sqrt{x^2+y^2}$ and $\theta = \texttt{atan2}(y,x)$. Representation is non-unique; negative $r$ means "walk backward."
  • Curve gallery: circles ($r = c$, $r = 2a\cos\theta$), cardioids and limaçons ($r = b + a\cos\theta$), roses ($r = \cos n\theta$, with $n$ petals for odd $n$ and $2n$ for even $n$), spirals (Archimedean $r = a\theta$, logarithmic $r = ae^{b\theta}$), and lemniscates ($r^2 = a^2\cos 2\theta$).
  • Slope: $\dfrac{dy}{dx} = \dfrac{r'\sin\theta + r\cos\theta}{r'\cos\theta - r\sin\theta}$; at the pole the tangent points along $\theta = \theta_0$ where $r = 0$.
  • Area (from sectors): $A = \dfrac12\displaystyle\int_\alpha^\beta r^2\,d\theta$, and between curves $A = \dfrac12\displaystyle\int_\alpha^\beta(r_{\text{out}}^2 - r_{\text{in}}^2)\,d\theta$.
  • Arc length: $L = \displaystyle\int_\alpha^\beta\sqrt{r^2 + (r')^2}\,d\theta$.
  • Application: orbits are conics $r = p/(1+e\cos\theta)$ with the attractor at a focus; Kepler's equal-area law is the polar area element accumulating at a constant rate.

Add to Your Modeling Portfolio. Add a polar curve to your model and compute an area or a length with $\tfrac12\int r^2\,d\theta$ or $\int\sqrt{r^2+(r')^2}\,d\theta$. Biology: model a flower's outline or a snail shell's cross-section as a rose or logarithmic spiral $r = ae^{b\theta}$, and compute the enclosed area or shell length. Economics: plot a firm's output across several product dimensions as a polar "radar chart" and use $\tfrac12\int r^2\,d\theta$ as a single scalar summary of overall scale. Physics: model a planetary or satellite orbit as $r = p/(1+e\cos\theta)$; compute the swept area $\tfrac12\int r^2\,d\theta$ between two angles and verify Kepler's equal-area law against your portfolio's time data. Data Science: build a polar (rose) histogram of a circular variable — wind direction, time-of-day, compass bearing — and compute total "mass" as $\tfrac12\int r^2\,d\theta$.

Looking Ahead

You can now describe, sketch, and do calculus on curves organized around a center. Chapter 27 takes the conic sections we met only in passing here — the ellipses, parabolas, and hyperbolas of $r = p/(1+e\cos\theta)$ — and studies their full geometry: foci, directrices, axes, and the meaning of eccentricity. The polar area element $r\,dr\,d\theta$ that we used informally returns with a rigorous justification in Chapter 33, when the Jacobian explains why changing coordinates inserts that factor of $r$; Chapter 32 then turns it loose on double integrals over disks and sectors. And the rotational thinking you practiced here — naming a point by distance and direction — extends in Chapter 28 and beyond to cylindrical and spherical coordinates, the natural homes of three-dimensional problems with axial and spherical symmetry.

Reflection

The lesson of this chapter is larger than any single formula. It is that coordinates are a choice, and the right choice is the one that matches the symmetry of the problem. A planet's orbit is an unholy mess in $x$ and $y$ and a one-line equation in $r$ and $\theta$. A flower's petals, a galaxy's arms, an antenna's reach — all are stories about angle, and all become simple the moment you stop insisting on the grid. Geometry and algebra are inseparable, but the algebra you get is yours to design. Choose your coordinates to fit your symmetry, and the calculus will meet you halfway.


Continue to: Exercises · Quiz · Case Study 1 · Case Study 2 · Key Takeaways · Further Reading