For the function
$ f(x,y) = 1 - (x^2 + y^2)^{2/3} $
one has to find extrema and saddle points. Without applying much imagination, it is obvious that the global maximum is at $ (0,0)$.
To prove that, I set up the Jacobian as
$$ Df(x,y) = \left( -\frac{4}{3} x (x^2 y^2)^{-1/3}, -\frac{4}{3} y (x^2 y^2)^{-1/3}\right)$$
The only solution for $ Df(x,y) = 0$ yields indeed $(0,0)$. In this point the Hessian is $$ D^2f(0,0) = \left( \begin{array}{cc} 0 & 0 \\ 0 & 0 \end{array} \right)$$
which is both positive and negative semi-definite, suggesting that $(0,0)$ is both a minimum and a maximum - can that be? Or is it actually a saddle point? Thanks for your hints!