Surface Area of Revolution Formula
Calculate the surface area formed by rotating a curve using SA = 2 pi integral f(x) sqrt(1 + (f'(x))^2) dx.
The Formula
The surface area of revolution formula calculates the total surface area generated when a curve y = f(x) is rotated around the x-axis. Think of it as spinning a line drawing around a spit like a potter's wheel, and measuring the entire outer surface of the resulting three-dimensional shape.
The formula works by breaking the curve into infinitesimally small segments. Each tiny segment, when rotated around the axis, traces out a thin band (like a ring or ribbon) on the surface. The circumference of each band is 2π times the distance from the curve to the axis of rotation (which is f(x) for rotation around the x-axis). The width of each band is the arc length element ds = √(1 + (f'(x))²) dx. Multiplying the circumference by the width and summing (integrating) over all bands gives the total surface area.
This formula is closely related to two other important calculus concepts. The arc length formula uses the same √(1 + (f'(x))²) factor, which accounts for how steeply the curve is sloped at each point. The volume of revolution (disk/washer method) uses π(f(x))² instead of 2πf(x), because it sums disk areas rather than surface bands.
For rotation around the y-axis instead of the x-axis, the formula becomes SA = 2π ∫ x √(1 + (f'(x))²) dx, where x replaces f(x) as the distance from the axis. If the curve is given parametrically as x(t) and y(t), the formula adapts to SA = 2π ∫ y(t) √((dx/dt)² + (dy/dt)²) dt.
Computing surface area integrals is often more challenging than computing volumes of revolution because the square root of a sum of squares rarely simplifies to a nice expression. Many surface area problems require numerical integration or trigonometric substitution.
A classic result using this formula is the surface area of a sphere. Rotating the semicircle y = √(r² - x²) around the x-axis from -r to r gives SA = 4πr², confirming the well-known geometry formula.
Variables
| Symbol | Meaning |
|---|---|
| SA | Surface area of the solid of revolution (square units) |
| f(x) | The function being rotated (distance from axis) |
| f'(x) | Derivative of f(x) (slope of the curve) |
| a, b | Limits of integration along the x-axis |
Example 1
Find the surface area of a cone formed by rotating y = 2x from x = 0 to x = 3 around the x-axis.
f(x) = 2x, f'(x) = 2
SA = 2π ∫₀³ 2x √(1 + 4) dx = 2π ∫₀³ 2x√5 dx
SA = 4π√5 ∫₀³ x dx = 4π√5 × [x²/2]₀³
SA = 4π√5 × 9/2 = 18π√5
SA = 18π√5 ≈ 126.5 square units
Example 2
Find the surface area of a sphere of radius r by rotating y = √(r² - x²) around the x-axis from -r to r.
f(x) = √(r² - x²), f'(x) = -x / √(r² - x²)
(f'(x))² = x² / (r² - x²)
1 + (f'(x))² = (r² - x² + x²) / (r² - x²) = r² / (r² - x²)
√(1 + (f'(x))²) = r / √(r² - x²)
SA = 2π ∫₋ᵣʳ √(r² - x²) × (r / √(r² - x²)) dx = 2πr ∫₋ᵣʳ dx = 2πr × 2r
SA = 4πr², confirming the familiar sphere surface area formula
When to Use It
Use the surface area of revolution formula when you need to:
- Calculate the surface area of objects with rotational symmetry (vases, bottles, domes)
- Determine the amount of material needed to coat or paint a curved surface
- Find the surface area of nose cones, nozzles, and other engineering shapes
- Derive or verify standard geometry formulas (sphere, cone, cylinder)
- Solve problems in heat transfer where surface area determines cooling rate
Remember: f(x) must be non-negative on [a, b] for the standard formula (rotation about x-axis). If f(x) goes negative, use |f(x)| or split the integral at the zeros.