5

Find all critical points of $f(x,y) = x^3 - 12xy + 8y^3$ and state whether the function has a relative minimum, relative maximum, or a saddle at the critical points.

So I have:

$f_x = 3x^2 -12 y$

$f_y = -12x + 24y^2$


$f_{xx} = 6x$

$f_{yy} = 48y$

$f_{xy} = -12$


I found that my critical points were: $(0,0)$ and $(2,1)$, but I still need to classify them.

My question is, how do I check if $f_{xx}$ is positive or negative? This seems like a silly question (I'm sure it is), but do I plug in $(0,0)$ for $f_{xx}$? Wouldn't that then be $6\cdot 0 > 0$? That seems wrong.

Ozera
  • 2,050
  • 1
    $6 \cdot 0 = 0$, so $f_{xx}(0, 0)$ is neither positive or negative. –  Aug 22 '13 at 07:04
  • Yes, you do plug in. – André Nicolas Aug 22 '13 at 07:07
  • @T.Bongers So, plugging in $(0,0)$ for $f_{xx}$ is what I do? I just take the x coordinate from $(0,0)$? Wait, if it's neither positive nor negative, does that mean this is a saddle point? – Ozera Aug 22 '13 at 07:08
  • 3
    @Ozera I assume you're trying to use the second partial derivative test. Note that if we evaluate $f_{xx} f_{yy} - f_{xy}^2$ at $(0, 0)$, we get $0 \cdot 0 - (-12)^2 = -144 < 0$, so the sign of $f_{xx}$ is irrelevant. –  Aug 22 '13 at 07:12
  • O, that's true. I understand now. Thanks. – Ozera Aug 22 '13 at 07:12
  • Since I don't have enough reputation. I have to write the new answer to point out the previous answer's mistake. By using the equation $g(x,y)=fxx(x,y)fyy(x,y)−[fxy(x,y)]^2$, it should be $g(0,0) = 6x * 48y - (-12)^2$ and the final result should $-144$ which is less than $0$. Therefore, the point $(0,0)$ should be a saddle point. – Joe Jun 09 '21 at 19:49

1 Answers1

7

Given:

$$\tag 1 f(x,y) = x^3 - 12xy + 8y^3$$

Find and classify all critical points.

The critical points are: $(0,0)$ and $(2,1)$.

The partial derivatives are:

  • $f_x = 3x^2 -12 y$
  • $f_y = -12x + 24y^2$
  • $f_{xx} = 6x$
  • $f_{yy} = 48y$
  • $f_{xy} = f_{yx} = -12$

The Hessian determinant is given by:

$$\det(H) = \begin{vmatrix} f_{xx} & f_{xy} \\ f_{yx} & f_{yy}\end{vmatrix} \ $$

If you are using the Hessian, there are four conditions you need to test:

  • $(01)$ $f_{xx} \gt 0$ and $\det H \gt 0 \rightarrow$ local minimum
  • $(02)$ $f_{xx} \lt 0$ and $\det H \gt 0 \rightarrow$ local maximum
  • $(03)$ $\det(H) \lt 0 \rightarrow$ saddle point
  • $(04)$ $\det(H) = 0 \rightarrow$ no statement can be made using this approach

For $(0,0)$, condition $(4)$ tells us that $\det H = 0$, so nothing can be said about this critical point, neither a min or max. Of course, we could have also looked at $$\displaystyle g(x,y) = f_{xx}(x, y)f_{yy}(x,y)-[f_{xy}(x,y)]^2.$$

Since $g(x,y) \lt 0$, this is not an extremum.

For $(2,1)$, we have: $f_{2,1} = 12 > 0$ and $\det H = 432 >0 \rightarrow$ a local minimum. The value of $f(x,y)$ at this minimum is $f(2,1) = -8$.

Plots are given by:

enter image description here

enter image description here

Amzoti
  • 56,093