Find the minimum and maximum values of $f(x,y,z)=xyz$ given the constraints $x^2+y^2+z^2=1$ and $x+y+z=0$. Does this constraints exist?
i have already found the system $(x-y)(z+2\lambda_1)=0$, $(y-z)(x+2\lambda_1)=0$, $(z-x)(y+2\lambda_1)=0$, $x^2+y^2+z^2-1=0$, $x+y+z=0.$
but i find it difficult to solve the system.
HINTS
Please show some work, you are welcome to ask for more hints after you show some progress on the problem.
UPDATE
So the Lagrangian is $$ L = xyz + \lambda \left(x^2+y^2+z^2-1\right) + \mu(x+y+z), $$ so the resulting system is $$ \begin{pmatrix}0 \\ 0 \\ 0\end{pmatrix} = \nabla L = \begin{pmatrix} yz + 2\lambda x + \mu\\ xz + 2\lambda y + \mu\\ xy + 2\lambda z + \mu \end{pmatrix} $$ Now subtracting the third equation from the second yields $$ 0 = x(z - y) + 2\lambda(y-z) = (z-y)(x - 2\lambda), $$ so either $y=z$ or $x=2\lambda$.
For example, consider $y=z$, then the two constraints imply $x^2+2y^2 = 1$ and $x+2y=0$, so the last equation says $x = -2y$ and the first then means $$ 1 = (-2y)^2+2y^2 \iff y = \pm \sqrt{1/6}. $$ Can you complete this and the other cases?