Find the minimum of $f(x,y,z) = z$ subject to the constraints $x + y + z = 1$ and $x^2 + y^2 = 1.$
So far, I have $$(0,0,1)=\lambda(1,1,1)+\mu(2x,2y,0)$$
$$0=\lambda+2\mu x \implies 2\mu x=-1 \implies x=-1/2\mu$$
$$0=\lambda+2\mu y \implies 2\mu y=-1 \implies y=-1/2\mu$$
$$1=\lambda$$
I feel like I'm not on the right path as there is no $z$ variable. Any input is appreciated.