A critical point of a multivariable function is a point where the surface is "flat," meaning a tangent plane at that point would be perfectly horizontal. Mathematically, this occurs where the gradient vector, $\nabla f = \left( \frac{\partial f}{\partial x}, \frac{\partial f}{\partial y} \right)$, is the zero vector. We must therefore find all points $(x, y)$ that satisfy both partial derivative equations simultaneously.
We differentiate $f(x, y) = x^5 + xy^2 - 5x$ with respect to each variable independently.
Derivative with respect to $x$ (treating $y$ as a constant):
$$ \frac{\partial f}{\partial x} = \frac{\partial}{\partial x}(x^5) + \frac{\partial}{\partial x}(xy^2) - \frac{\partial}{\partial x}(5x) = 5x^4 + y^2 - 5 $$Derivative with respect to $y$ (treating $x$ as a constant):
$$ \frac{\partial f}{\partial y} = \frac{\partial}{\partial y}(x^5) + \frac{\partial}{\partial y}(xy^2) - \frac{\partial}{\partial y}(5x) = 0 + 2xy - 0 = 2xy $$We set both derivatives to zero to find the points where the gradient is $\vec{0}$.
$$ 5x^4 + y^2 - 5 = 0 \quad \text{(1)} $$ $$ 2xy = 0 \quad \text{(2)} $$Equation (2) is the key. For $2xy=0$, it must be that either $x=0$ or $y=0$. We analyze these two cases separately.
Conclusion for Part (a): The four critical points of the function are $(1, 0)$, $(-1, 0)$, $(0, \sqrt{5})$, and $(0, -\sqrt{5})$.
The tangent plane is a flat surface that "just touches" the 3D graph of a function at a single point. It's the 3D equivalent of a tangent line. The formula is a natural extension of the point-slope form of a line:
$$ z - z_0 = f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0) $$Here, $(x_0, y_0, z_0)$ is the point of tangency, and the partial derivatives $f_x$ and $f_y$ give the slopes of the plane in the x and y directions, respectively.
We are given $(x_0, y_0) = (1, 1)$. We find $z_0$ by plugging this into the function:
$$ z_0 = f(1, 1) = (1)^5 + (1)(1)^2 - 5(1) = 1 + 1 - 5 = -3 $$ So, the point is $(1, 1, -3)$.We evaluate the partial derivatives (from Part a) at $(1, 1)$:
$$ f_x(1, 1) = 5(1)^4 + (1)^2 - 5 = 1 $$ $$ f_y(1, 1) = 2(1)(1) = 2 $$Plug all the components into the tangent plane formula:
$$ z - (-3) = 1(x - 1) + 2(y - 1) $$Simplifying this gives the final equation:
$$ z + 3 = x - 1 + 2y - 2 \implies z = x + 2y - 6 $$Conclusion for Part (b): The equation of the tangent plane is $z = x + 2y - 6$.
Once we find a "flat spot" (a critical point), we need to determine its nature. Is it the bottom of a valley (local minimum), the top of a hill (local maximum), or a Pringles-like shape (saddle point)? In single-variable calculus, the sign of the second derivative, $f''(x)$, tells us this. In 3D, we need a more powerful tool.
The **Hessian matrix** is a matrix of all the second-order partial derivatives. It captures how the slopes are changing in every direction.
$$ H_f = \begin{bmatrix} f_{xx} & f_{xy} \\ f_{yx} & f_{yy} \end{bmatrix} $$The **discriminant**, $D$, is the determinant of the Hessian matrix. It cleverly combines all the curvature information into a single number.
$$ D = \det(H_f) = f_{xx}f_{yy} - (f_{xy})^2 $$Think of $D$ as a battle between pure curvature ($f_{xx}f_{yy}$) and the twist ($(f_{xy})^2$):
Critical Point $(x,y)$ | $f_{xx} = 20x^3$ | $D = 40x^4 - 4y^2$ | Analysis | Classification |
---|---|---|---|---|
$(1, 0)$ | $20(1)^3 = 20$ | $40(1)^4 - 4(0)^2 = 40$ | $D > 0$ and $f_{xx} > 0$ | Local Minimum |
$(-1, 0)$ | $20(-1)^3 = -20$ | $40(-1)^4 - 4(0)^2 = 40$ | $D > 0$ and $f_{xx} < 0$ | Local Maximum |
$(0, \sqrt{5})$ | $20(0)^3 = 0$ | $40(0)^4 - 4(\sqrt{5})^2 = -20$ | $D < 0$ | Saddle Point |
$(0, -\sqrt{5})$ | $20(0)^3 = 0$ | $40(0)^4 - 4(-\sqrt{5})^2 = -20$ | $D < 0$ | Saddle Point |
The interactive 3D plot below confirms our findings. You can rotate and zoom to inspect the surface's shape at each labeled critical point.
A "local" extremum is just a hill or valley in its immediate neighborhood. A "global" extremum is the absolute highest or lowest point on the entire surface. To check for global extrema, we must see what the function does as its inputs get very large.
Consider the function's behavior along the x-axis (where $y=0$):
$$ f(x, 0) = x^5 - 5x $$ As we let $x$ grow infinitely large or small: $$ \lim_{x \to \infty} (x^5 - 5x) = +\infty $$ $$ \lim_{x \to -\infty} (x^5 - 5x) = -\infty $$Conclusion for Part (c): Since the function goes to both positive and negative infinity, it is unbounded. Therefore, it has no global maximum or global minimum. The extrema we found at $(1,0)$ and $(-1,0)$ are strictly local.
A critical point of a multivariable function is a point where the surface is "flat," meaning a tangent plane at that point would be perfectly horizontal. Mathematically, this occurs where the gradient vector, $\nabla f = \left( \frac{\partial f}{\partial x}, \frac{\partial f}{\partial y} \right)$, is the zero vector.
We set both partial derivatives to zero: $ \frac{\partial f}{\partial x} = 5x^4 + y^2 - 5 = 0 $ and $ \frac{\partial f}{\partial y} = 2xy = 0 $. The second equation implies $x=0$ or $y=0$, which leads to the four critical points: $(1, 0)$, $(-1, 0)$, $(0, \sqrt{5})$, and $(0, -\sqrt{5})$.
The tangent plane is a flat surface that "just touches" the 3D graph of a function at a single point. Its formula is derived from the partial derivatives, which give the slopes in the x and y directions.
$$ z - z_0 = f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0) $$For the point $(1, 1)$, we found the tangent plane equation to be $z = x + 2y - 6$.
Use the sliders below to move the point of tangency $(x_0, y_0)$ across the surface. The 3D plot will update in real-time to show the tangent plane at your chosen location. This demonstrates how the plane's tilt (determined by the partial derivatives) changes as you move.
To determine if a critical point is a local minimum, maximum, or saddle point, we use the Second Derivative Test. This involves the **Hessian matrix** of second-order partial derivatives and its determinant, the **discriminant** $D = f_{xx}f_{yy} - (f_{xy})^2$.
By calculating the discriminant $D$ at each critical point, we classify them as follows:
Critical Point $(x,y)$ | $f_{xx}$ | $D$ | Classification |
---|---|---|---|
$(1, 0)$ | $20 > 0$ | $40 > 0$ | Local Minimum |
$(-1, 0)$ | $-20 < 0$ | $40 > 0$ | Local Maximum |
$(0, \sqrt{5})$ | $0$ | $-20 < 0$ | Saddle Point |
$(0, -\sqrt{5})$ | $0$ | $-20 < 0$ | Saddle Point |
The interactive plot below shows the locations of all four critical points on the surface, visually confirming our classifications.
Since the function is unbounded (it goes to $\pm\infty$), it has no global maximum or minimum. The extrema found are strictly local.