Mathwords logoMathwords

Polar Curves — Definition, Graphs & Examples

Polar Curves

Curves commonly written with polar equations include cardioids, lemniscates, limaçons, rose curves, and spirals.

 

 

See also

Polar coordinates

Key Formula

r=f(θ)r = f(\theta)
Where:
  • rr = The radial distance from the origin (pole) to a point on the curve
  • θ\theta = The angle measured counterclockwise from the positive x-axis (polar axis), typically in radians
  • f(θ)f(\theta) = A function that gives the radius for each angle, defining the shape of the curve

Worked Example

Problem: Sketch and identify the polar curve r = 2 + 2cos(θ), and find key points.
Step 1: Recognize the form. The equation r = a + b·cos(θ) with a = b = 2 is a cardioid (a special limaçon where a equals b).
r=2+2cosθr = 2 + 2\cos\theta
Step 2: Evaluate r at key angles. At θ = 0, cos(0) = 1, so r = 4. At θ = π/2, cos(π/2) = 0, so r = 2. At θ = π, cos(π) = −1, so r = 0.
r(0)=4,r ⁣(π2)=2,r(π)=0r(0) = 4,\quad r\!\left(\tfrac{\pi}{2}\right) = 2,\quad r(\pi) = 0
Step 3: At θ = 3π/2, cos(3π/2) = 0, so r = 2 again. The curve is symmetric about the polar axis (the x-axis) because cosine is an even function.
r ⁣(3π2)=2r\!\left(\tfrac{3\pi}{2}\right) = 2
Step 4: Plot these points and connect them smoothly. The curve reaches its maximum distance of 4 at θ = 0 and touches the origin at θ = π, forming a heart-like shape.
rmax=4 at θ=0,rmin=0 at θ=πr_{\max} = 4 \text{ at } \theta = 0,\quad r_{\min} = 0 \text{ at } \theta = \pi
Answer: The curve r = 2 + 2cos(θ) is a cardioid that extends 4 units to the right, passes through (2, π/2) and (2, 3π/2), and has a cusp at the origin when θ = π.

Another Example

This example differs from the first by applying the polar area formula to a rose curve, demonstrating a calculus-based computation rather than a graphing exercise.

Problem: Find the area enclosed by one petal of the rose curve r = 3sin(2θ).
Step 1: Identify the curve. The equation r = 3sin(2θ) is a rose curve with n = 2, which produces 2·2 = 4 petals (since n is even). Each petal corresponds to an interval where r ≥ 0.
r=3sin(2θ)r = 3\sin(2\theta)
Step 2: Find the bounds for one petal. Set r = 0: sin(2θ) = 0 gives 2θ = 0 or 2θ = π, so the first petal spans θ from 0 to π/2.
θ[0,  π2]\theta \in \left[0,\;\frac{\pi}{2}\right]
Step 3: Use the polar area formula. The area enclosed by a polar curve from angle α to β is A = (1/2)∫r² dθ.
A=120π/2(3sin2θ)2dθ=920π/2sin2(2θ)dθA = \frac{1}{2}\int_{0}^{\pi/2} \left(3\sin 2\theta\right)^2 \, d\theta = \frac{9}{2}\int_{0}^{\pi/2} \sin^2(2\theta)\, d\theta
Step 4: Apply the identity sin²(u) = (1 − cos(2u))/2 with u = 2θ.
A=920π/21cos(4θ)2dθ=940π/2(1cos4θ)dθA = \frac{9}{2}\int_{0}^{\pi/2} \frac{1 - \cos(4\theta)}{2}\, d\theta = \frac{9}{4}\int_{0}^{\pi/2} \bigl(1 - \cos 4\theta\bigr)\, d\theta
Step 5: Evaluate the integral. The integral of 1 over [0, π/2] is π/2. The integral of cos(4θ) over [0, π/2] is (1/4)sin(4θ) evaluated from 0 to π/2, which equals 0.
A=94[π20]=9π8A = \frac{9}{4}\left[\frac{\pi}{2} - 0\right] = \frac{9\pi}{8}
Answer: The area of one petal of r = 3sin(2θ) is 9π/8 square units.

Frequently Asked Questions

How do you convert a polar curve to Cartesian (rectangular) form?
Use the relationships x = r·cos(θ), y = r·sin(θ), and r² = x² + y². Replace r and θ in the polar equation with these substitutions and simplify. For example, r = 2cos(θ) becomes r² = 2r·cos(θ), which is x² + y² = 2x — the equation of a circle.
How do you find the area enclosed by a polar curve?
Use the formula A = (1/2)∫[α to β] r² dθ, where α and β are the angles that bound the region. Be careful to choose limits where r traces the boundary exactly once. If the curve has symmetry, you can integrate over a smaller interval and multiply.
How many petals does a rose curve r = a·sin(nθ) or r = a·cos(nθ) have?
If n is odd, the rose has exactly n petals. If n is even, the rose has 2n petals. For instance, r = 3sin(2θ) has 4 petals, while r = 3sin(3θ) has 3 petals. This distinction occurs because even values of n cause the curve to trace additional petals as θ ranges from 0 to 2π.

Polar Curves vs. Parametric Curves

Polar CurvesParametric Curves
DefinitionGraph of r = f(θ) in polar coordinatesGraph of x = f(t), y = g(t) for a parameter t
Variablesr (distance) and θ (angle)x and y expressed in terms of parameter t
Area formulaA = (1/2) ∫ r² dθA = ∫ y dx = ∫ g(t)·f'(t) dt
Best suited forCurves with radial symmetry (spirals, roses, cardioids)Curves tracing a path over time (projectile motion, cycloids)
Coordinate systemPolar (r, θ)Cartesian (x, y) with a third variable t

Why It Matters

Polar curves appear extensively in precalculus and AP Calculus BC, where you must graph them, find enclosed areas, and compute arc lengths. Beyond the classroom, polar equations model phenomena with natural rotational symmetry — antenna radiation patterns, orbital paths of planets, and microphone pickup patterns are all described by polar curves.

Common Mistakes

Mistake: Plotting negative r values incorrectly. When r is negative, students often plot the point in the same direction as θ.
Correction: A negative r means the point lies in the opposite direction. If r = −2 at θ = π/4, plot the point 2 units from the origin at angle π/4 + π = 5π/4.
Mistake: Using wrong limits of integration when finding area, such as always integrating from 0 to 2π.
Correction: Identify the exact interval where the curve traces the region of interest once. For one petal of a rose or one loop of a limaçon, the bounds are typically a subset of [0, 2π]. Integrating over the full interval can double-count or include unwanted area.

Related Terms

  • Polar CoordinatesThe coordinate system used to define polar curves
  • Polar EquationAn equation in r and θ whose graph is a polar curve
  • CardioidHeart-shaped polar curve: r = a ± a·cos(θ)
  • LimaçonGeneral form r = a + b·cos(θ) that includes cardioids
  • Rose CurvePolar curve with petal-shaped loops: r = a·sin(nθ)
  • LemniscateFigure-eight polar curve: r² = a²·cos(2θ)
  • SpiralPolar curve where r increases with θ, e.g., r = aθ
  • CurveGeneral term for the graph of any equation