The given function is $ f(x, y) = x^2y^2 $. I used the gradient of $f$ to find the stationary points (not sure if these are correct).
$$ \nabla f(x, y) = \mathbf{0} $$ $$ \langle 2xy^2, 2x^2y \rangle = \langle 0, 0 \rangle $$ $$ 2xy^2 = 0 \; \mathrm{and} \; 2x^2y = 0 $$
I found the stationary points to be $(x, 0)$ and $(0, y)$, since points of the two forms are needed such that $\nabla f(x, y) = \mathbf 0$.
I attempted to use the second-order partial-derivative test on those two points.
$$\begin{align} det(H_f) & = f_{xx}f_{yy} - (f_{xy})^2 \\ & = (2y^2)(2x^2) - (4xy)^2 \\ & = -12x^2y^2 \end{align}$$
$$ det(H_f(x, 0)) = -12x^2(0^2) = 0 $$ $$ det(H_f(0, y)) = -12(0^2)y^2 = 0 $$
Given that the discriminant is $0$ in separate tests with each point, the test does not say anything about them. Is there a way to get around this?