← back to calculus

Applications of Integrals

Active Calculus · CC BY-SA · activecalculus.org

Integration measures accumulation. Once you can integrate, you can compute area between curves, volumes of revolution, arc length, and work. Each application sets up the same pattern: slice the problem into thin pieces, write a Riemann sum, take the limit.

Area between curves

The area between f(x) and g(x) on [a, b], where f(x) ≥ g(x), is the integral of their difference. Each thin vertical strip has width dx and height f(x) − g(x).

Scheme

Volumes of revolution

Rotate a curve around an axis and you get a solid. The disk method stacks circular cross-sections: V = pi integral of r(x)^2 dx. The shell method wraps cylindrical shells: V = 2*pi integral of x*f(x) dx. Use whichever makes the integral simpler.

x r(x) solid of revolution each slice is a disk of radius r(x)
Scheme

Arc length

The length of a curve y = f(x) from a to b is the integral of sqrt(1 + (f'(x))^2) dx. Each tiny segment has length sqrt(dx^2 + dy^2) = sqrt(1 + (dy/dx)^2) * dx.

Scheme

Work

Work = force times distance. When force varies with position, W = integral of F(x) dx. Hooke's law for a spring: F(x) = kx, so the work to stretch a spring from 0 to d is k*d^2/2.

Scheme

Notation reference

Symbol Meaning
A = ∫[f(x)−g(x)]dxArea between curves
V = π∫r(x)²dxVolume by disk method
V = 2π∫x·f(x)dxVolume by shell method
L = ∫√(1+f'(x)²)dxArc length
W = ∫F(x)dxWork done by variable force
Neighbors

Calculus sequence

  • ⚛ Physics Ch.1 — integrals compute physical quantities like work, center of mass, and fluid pressure
  • 🎰 Probability Ch.5 — probability distributions use the same area-under-curve interpretation

Foundations (Wikipedia)