Here's the function: $f(x,y,z)=xyz^3$ under the constraint $3x^2+2y^2+z^2=1$
My effort:
$yz^3=\lambda6x$
$xz^3=\lambda4y$
$3xyz^2=\lambda2z$
But from there I don't know how to solve this system of equation.
Any help to point me in the right direction would be greatly appreciated.
Thank you.
Edit 2: One final edit to say that I recommend looking at Ronald Lett's answer, as he did what I was trying not to do and addressed all possible cases. He even did so in a thorough and, I believe understandable, answer.
You need to define a lagrangrian, $\mathscr{L}$, which is your objective function (the function you are minimizing/maximizing) minus a constant (the lagrange multiplier), we can call this $\lambda$ times your constant (set $=0$, so in your case you need to subtract the $1$ from both sides).
So for your problem we have $\mathscr{L} = xyz^3 - \lambda (3x^2+2y^2+z^2 -1)$
Now you want to take the derivative of $\mathscr{L}$ with respect to whatever you are minimizing against (you don't specify in your problem? I'm assuming $x,y$, and $z$), set these derivatives equal to 0, and solve. Call the resulting $\lambda, x,y,z$ you get $x^*,y^*, z^*$, which would be your solutions.
This is a sketchy explanation, but you should help your progress, and hopefully either someone else provides fuller answer or perhaps I shall edit this later.
Edit: I answered the wrong thing.
This may be wrong as well , but what about rearranging so the right side of all 3 equations you have is $2\lambda$ then subtract the first from the second and get $2y^2 = 3x^2$. Then set the first and third equal and get $9x^2 = z^2$. Then plug these into your constraint to find z, then use z to get x and x to get y.
I believe this is a solution, but perhaps not the minimum.