I had to solve the following problem: Find the distance from the point $A(1,1,0)$ to the surface $xy+xz+yz=0$. Using Lagrange Multipliers I obtained the following system
$2(x-1)=t(y+z), 2(y-1)=t(x+z), 2z=t(y+x), xy+xz+yz=0$ and the distance is $2^{(1/2)}/3$
I had to use the software Mathematica to solve this system because I could't solve it by myself. But I am not satisfied, I would like to know a way to solve it without using Mathematica. I appreciate any help. Thanks.
Not too methodic, but... Sum the first 3 of your 4 equations. You get $$ 2(x+y+z)-4 = 2t(x+y+z) \quad \Rightarrow\quad x+y+z = \displaystyle\frac{2}{1-t}. $$ Now these equations become $2(x-1)=t\Big(\displaystyle\frac{2}{1-t}-x\Big)$, etc.; solving them you get $$ x=y=\frac{2}{(1-t)(2+t)}, z = \frac{2t}{(1-t)(2+t)}; $$ plugging it into $xy+xz+yz=0$ reveals $t=-1/2$.
So $x=y=8/9$, $z=-4/9$, and the required distance is $$ \sqrt{(x-1)^2+(y-1)^2+z^2}=\sqrt{\frac{1}{81}+\frac{1}{81}+\frac{16}{81}}=\frac{\sqrt{2}}{3} $$ as expected.