12.108 min read
Local Minima
A point is a local minimum of if for all in some neighborhood of . In other words, is the smallest value of in a small ball around .
A strict local minimum requires for all in the neighborhood. A global minimum satisfies for all in the entire domain.
The relationship is: global minimum local minimum critical point (for differentiable ). Neither implication reverses: local minima need not be global, and critical points need not be local minima.
Formal View
Definition 12.5 — Local Minimum
A point is a local minimum of if there exists such that for all with . It is a strict local minimum if the inequality is strict for .
Why This Matters
The distinction between local and global minima determines whether a found solution is optimal.
- Non-convex loss function landscapes in deep learning have many local minima
- Protein folding: the native structure is the global minimum of the free energy
- Portfolio optimization: local minima of risk-adjusted return correspond to suboptimal portfolios
Quiz
Question 1
Which statement is correct?
Question 2
The function has only one local minimum.
Common Mistakes
- Assuming gradient descent finds the global minimum for non-convex functions.
- Confusing local minimum (defined by neighborhood comparison) with critical point (defined by zero gradient).
- Forgetting that differentiability is required for the implication local min critical point.