Critical Points, Extrema, and Saddle Points

College Depth 60 in the knowledge graph I know this Set as goal
Unlocks 398 downstream topics
critical-points extrema saddle-points

Core Idea

Critical points occur where ∇f = 0 (or partials fail to exist). A point is a local maximum or minimum (extremum) if f is larger or smaller than nearby values; it is a saddle point if it is larger in some directions and smaller in others. Finding critical points is the first step in optimization.

Explainer

In single-variable calculus, you find maxima and minima by solving f'(x) = 0. In multivariable calculus, the gradient ∇f = (∂f/∂x, ∂f/∂y, ...) plays the role of the derivative, and the condition ∇f = 0 generalizes the flatness condition. A critical point is a point where every partial derivative is zero simultaneously — where the function has no slope in any direction. At such a point, the tangent plane to the graph of f is perfectly horizontal, just as a tangent line is horizontal at a single-variable extremum.

But here a new phenomenon appears that has no single-variable analogue: the saddle point. At a saddle, the gradient is zero but the point is neither a maximum nor a minimum. The classic example is f(x, y) = x² − y² at the origin: moving along the x-axis, the function increases (like a bowl); moving along the y-axis, it decreases (like an inverted bowl). The origin is the lowest point in one cross-section and the highest in another — a mountain pass, or the seat of a saddle. Your gradient knowledge tells you ∇f(0,0) = (0, 0), confirming it as a critical point, but the geometry reveals it is neither a maximum nor a minimum.

The challenge is that solving ∇f = 0 gives you a list of candidates — critical points — but does not tell you what kind each one is. You might have a local minimum (the surface curves up in all directions), a local maximum (curves down in all directions), or a saddle (curves up in some directions and down in others). Classifying requires more information about the curvature of the surface near the critical point, which is captured by the Hessian matrix — your next topic. The Hessian plays the role that the second derivative plays in single-variable calculus, extended to capture curvature in every direction.

Geometrically, you can build intuition by thinking of a topographic map. Peaks are local maxima, valleys are local minima, and mountain passes are saddle points. In all three cases, the gradient is zero (you are at a locally flat spot), but their local geometry differs fundamentally. In optimization, this matters enormously: an algorithm that only finds points where ∇f = 0 needs an additional test to confirm it has found a minimum rather than a saddle. Modern machine learning is full of high-dimensional saddle points, which is one reason optimization in neural networks is so subtle.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineOpposites and Additive InversesAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesLiteral EquationsSlope-Intercept FormPoint-Slope FormWriting Linear EquationsParallel and Perpendicular Line SlopesGraphing Linear EquationsPiecewise FunctionsOne-Sided LimitsContinuity DefinitionLimit Definition of the DerivativeDerivative as Slope of Tangent LinePartial Derivatives: Definition and ComputationThe Gradient VectorCritical Points, Extrema, and Saddle Points

Longest path: 61 steps · 250 total prerequisite topics

Prerequisites (1)

Leads To (1)