I need to find the maximum and minimum points of the function $f(x,y,z) = x^2 + y^2 + z^2$ restricted to $x^4 + y^4 + z^4 = 1$.
I manage to find the maximum point, $\sqrt{3}$. However, the template is also pointing to a minimum point equal to 1.
I know that I can make $x = 0$ and $y = 0$ in the constraint, and thus conclude that $z= \pm 1$, or just change the combinations. However, solving the system
\begin{align*} 2x &= \lambda 4x^3 \\ 2y &= \lambda 4y^3 \\ 2z &= \lambda 4z^3 \\ x^4 + y^4 + z^4 &= 1 \end{align*}
I can't find $z= \pm 1$. Could anyone help me?
Your set of equations is correct. However, when solving an equation of the form $4\lambda t^3 = 2t$, you have to isolate the trivial solution $t = 0$ first and then, assuming that $t$ is non-zero (otherwise you are not allowed to divide by $t$), you can find the other solutions, namely $t = \frac{\pm1}{\sqrt{2\lambda}}$. In consequence, one has $x,y,z \in \{0,\frac{\pm1}{\sqrt{2\lambda}}\}$, with $\lambda$ being undetermined for the moment. You have thus nine different triplets $(x,y,z)$; next, you need to check whether each of them fulfills the constraint equation $-$ which will permit to find the value of $\lambda$ in most cases $-$ and finally you will have to compute the corresponding values of $f(x,y,z)$ in order to know which ones represent minima, maxima and saddle points respectively.