← back to calculus

Applications of Derivatives

Active Calculus (CC BY-SA) · activecalculus.org

Derivatives answer practical questions: Where is the maximum? How fast is something changing? What does the curve look like? Optimization finds extrema where f'(x) = 0. L'Hopital's rule evaluates indeterminate limits. Newton's method finds roots by chasing tangent lines.

local max local min f'(x) = 0 at extrema: tangent line is horizontal

Finding maxima and minima

Critical points are where f'(x) = 0 or f'(x) is undefined. To classify them: f''(x) > 0 means local minimum, f''(x) < 0 means local maximum. This is the second derivative test.

Scheme

Related rates

If two quantities are related by an equation and both change with time, differentiate the equation with respect to t. You get a relationship between their rates. Classic example: a balloon inflating, how fast does the radius grow when the volume grows at a known rate?

Scheme

L'Hopital's rule

If lim f(x)/g(x) is 0/0 or ∞/∞, then it equals lim f'(x)/g'(x) (when that limit exists). This resolves indeterminate forms mechanically.

Scheme

Newton's method

To find a root of f(x) = 0, wpNewton's method starts with a guess x₀ and iterates: xₙ₊¹ = xₙ - f(xₙ)/f'(xₙ). Each step follows the tangent line to the x-axis. Convergence is quadratic when it works.

Scheme

Curve sketching

The first derivative tells you where f is increasing (f' > 0) or decreasing (f' < 0). The second derivative tells you concavity: concave up (f'' > 0) or concave down (f'' < 0). Inflection points are where concavity changes.

Scheme

Notation reference

Concept Test Conclusion
Critical pointf'(x) = 0Candidate for max/min
Local maxf''(x) < 0Concave down at critical point
Local minf''(x) > 0Concave up at critical point
Inflectionf''(x) = 0, sign changesConcavity switches
Newton stepx - f(x)/f'(x)Next approximation to root
Neighbors