Andromeda
Note

Second-Order Partial Derivatives

Definition

Second-order partial derivatives are the derivatives of the first partial derivatives. For a function f(x,y)f(x, y), there are four: fxx,fyy,fxy,fyxf_{xx}, f_{yy}, f_{xy}, f_{yx}.

  • How to read: “The functions f x x, f y y, f x y, and f y x.”
  • Meaning: Differentiate twice—either both times with respect to one variable (pure partials) or once with respect to each (mixed partials).

Why It Matters

Second-order partials reveal the ‘hidden interaction’ between variables; they tell us not just how one thing changes, but how the rate of that change is affected by other parts of the system, a critical insight for complex optimization.

Core Concepts

  • Pure Partials: fxx=x(fx)f_{xx} = \frac{\partial}{\partial x}(f_x) and fyy=y(fy)f_{yy} = \frac{\partial}{\partial y}(f_y).

  • How to read: “The f x x equals partial divided by partial x of f x.”

    • Meaning: Rate of change of the x-slope as you move in x (concavity in x); analogous for fyyf_{yy} in y.
  • Mixed Partials: fxy=y(fx)f_{xy} = \frac{\partial}{\partial y}(f_x) and fyx=x(fy)f_{yx} = \frac{\partial}{\partial x}(f_y).

  • How to read: “The f x y equals partial divided by partial y of f x.”

    • Meaning: How the x-slope changes as you move in y (cross-direction curvature).
  • Clairaut’s Theorem: If fxyf_{xy} and fyxf_{yx} are continuous, then fxy=fyxf_{xy} = f_{yx}.

  • How to read: “The f x y equals f y x.”

    • Meaning / when to use: Order of differentiation doesn’t matter for mixed partials when they’re continuous—simplifies Hessian calculations.

Connected Concepts