Skip to content

Higher-order derivatives

A derivative is itself a function (lesson 2 mentioned this in passing), so you can differentiate it again. The single capability this lesson builds: compute higher derivatives and interpret the second derivative as acceleration in physics and curvature on a graph, then use it (via the second-derivative test) to sort maxima from minima.

You will meet the notation (f'', f''', f^(4), …; or in Leibniz, d²f/dx²), differentiate x^4 down to zero in five steps, and see the second derivative’s two interpretations. In physics, s(t) differentiates to velocity, then to acceleration: Newton’s F = ma is mass times this second derivative, and the entire framework of classical mechanics is written in second derivatives (a free-fall example shows gravity as the constant s'' = -32). On a graph, the second derivative is curvature: f'' > 0 cups upward (smiling), f'' < 0 cups downward (frowning), and a sign change is an inflection point. That powers the second-derivative test: at a critical point (f' = 0), f'' > 0 is a local minimum, f'' < 0 is a local maximum. You will also see two signature cases, sin'' = -sin (the oscillation equation f'' = -f that governs everything that swings or waves) and that every derivative of e^x is e^x (setting up the next lesson’s clean Taylor series).

This is lesson 12 of Phase 3 (Integration and approximation). It returns to differentiation after Phase 3’s integration arc, and it is the direct setup for the final lesson (Taylor series), which uses a function’s whole tower of higher derivatives at a single point to rebuild the function as a polynomial. In the AI tracks, second-derivative (curvature) information underlies Newton’s method, the Hessian, adaptive optimizers like Adam, and loss-landscape analysis, this lesson is where curvature first gets a name.

Prerequisite (within this track): lesson 11, Why area equals slope, simply for sequential continuity. The genuine dependencies are earlier: lesson 2 (the derivative as a function), and the derivative rules from Phases 1 and 2 (power, trig, e), since this lesson differentiates those repeatedly. Comfort solving f'(x) = 0 for critical points and plugging back into a polynomial is the algebra used in the practice. No coding, nothing installed.

  • Compute higher derivatives (f”, f''', and beyond) for polynomials, trig functions, and e^x
  • Interpret the second derivative as acceleration in physics and as curvature on a graph
  • Apply the second-derivative test to classify critical points as local minima, maxima, or inconclusive
  • Recognize the oscillation equation f” = -f and the self-reproduction of e^x’s derivatives, and connect curvature to second-order optimization in machine learning
  • Read time: about 10 minutes
  • Practice time: about 12 minutes (mapping a curve with the second-derivative test, a projectile-motion problem, and flashcards)
  • Difficulty: standard