I took this question from the book Introduction to Linear Algebra (Gilbert Strang). It is from section 6.5, exercise 29:
For $F1(x,y) = \frac{1}{4}x^4 + x^2 y + y^2$ and $F2(x,y) = x^3 + xy - x$ find the second derivative matrix H1 and H2:
Test for minimun: $H = \begin{bmatrix}\frac{\partial^2 F}{\partial x^2} & \frac{\partial^2 F}{\partial xy}\\\frac{\partial^2 F}{\partial yx} & \frac{\partial^2 F}{\partial y^2}\end{bmatrix}$ is positive definite.
H1 is positive definite so F1 is concave up (= convex). Find the minimum point of F1 and the saddle point of F2
For $F1$, I found:
$H1 = \begin{bmatrix}3x^2+2y & 2x\\ 2x & 2\end{bmatrix}$,
so when I plug the function where the first derivative is equal to $0$, i.e. $y = \frac{-x^2}{2}$:
$H1 = \begin{bmatrix}2x^2 & 2x\\ 2x & 2\end{bmatrix}$,
it turns out that this matrix is not positive definite for any $x$.
My question is: Does it mean that this function F1 does not have a minimum?
Note that\begin{align}F_1(x,y)&=\frac14x^4+x^2y+y^2\\&=\left(\frac12x^2+y\right)^2.\end{align}So, it is always non-negative and it is $0$ if and only if $y=-\frac{x^2}2$. Therefore, $F_1$ has a minimum: $0$.