Graph
Drag to pan, mouse wheel to zoom, double-click to reset. Hover to read \((x,y)\) and \(f\). Critical points found are marked and labeled.
Math Calculus • Multivariable Calculus
Drag to pan, mouse wheel to zoom, double-click to reset. Hover to read \((x,y)\) and \(f\). Critical points found are marked and labeled.
A critical point is a point where the gradient is zero, meaning all first partial derivatives vanish at that location. It is a candidate for a local minimum, local maximum, or saddle point.
For f(x,y), the test uses D = f_xx f_yy - (f_xy)^2 at the critical point. If D > 0 and f_xx > 0 it is a local minimum, if D > 0 and f_xx < 0 it is a local maximum, and if D < 0 it is a saddle point.
Boundary check samples the edges of the rectangular domain to look for small or large values that may indicate absolute minima or maxima on a closed region. It complements interior critical points found from grad f = 0.
Many multivariable equations from grad f = 0 do not have simple closed-form solutions. A multi-seed Newton method can locate critical points reliably within a specified domain, then the Hessian test is used for classification.