Given $S = \left \{ (x,y,z) : z^2-xy=1\right \}$
a. Prove that there is at least one point which is closest to $(0, 0, 0)$ and find the distance.
b. In section a you should have found several "critical points". show that those which are not a global minimum are also not a local extremum.
My problem is that I only get global minimum points in section a:
Defining $f = || \ ||^2=x^2+y^2+z^2$ and using Lagrange multipliers theorem we know that for any local extremum $p$ s.t $\nabla F(p) \neq 0$, we have $\nabla F(p) = \lambda \nabla f(p)$.
So, $\lambda (2x_0, 2y_0, 2z_0) = (-y_0, -x_0, 2z_0)$, thus $\lambda = 1$, and $x_0=y_0=0$
So we get 2 solutions $(0, 0, 1), (0, 0, -1)$.
Which are both a global minimum.
Can anyone explain what am I missing?

$\lambda (2x, 2y, 2z) = (-y, -x, 2z)$
$2\lambda x = -y$
$2\lambda y = -x$
$\lambda z = z$
$z^2 - xy = 1$
So we also have,
$z = 0$ as a possible solution from third.
From first, $\lambda = - \frac{y}{2x}$
Plugging into second, $y^2 = x^2 \implies y = \pm x$
So given the constraint, $x = -1, y = 1, z = 0$ and $x = 1, y = -1, z = 0$ are other critical points to test.