In a problem on Lagrange multipliers, I need to find the maximum and minimum of, $$f(x, y) = \frac{1}{3}x^3 +\frac{1}{2}x^2y^2 + \frac{1}{3}y^3$$ subject to the constraint, $$g=x^2+y^2-2=0$$
Doing the method of Lagrange Multipliers as ${\nabla}f = {\lambda}{\nabla}g$ , (instead of finding the lagrangian $L$, and solving for $\frac{{\partial}L}{{\partial}x}, \frac{{\partial}L}{{\partial}y}, \frac{{\partial}L}{{\partial}\lambda}$),
I came to the problem of solving the 3 non-linear equations:
$$x^2+xy^2=\lambda2x$$ $$y^2+x^2y = \lambda2y$$ $$x^2 +y^2-2=0$$Assuming I haven't gone wrong in forming these equations, how am I supposed to proceed from here to find all the constrained critical points? I have already found $(x,y) = (0,\pm\sqrt2)$ and $(x,y) = (\pm\sqrt2, 0)$, by factoring the first 2 equations etc. I am also aware that $(\pm1,\pm1)$ are solutions to the constraint equation, but there are more solutions that I haven't found.
How do I go about finding all solutions to these ugly non-linear equations?
You have already found all solutions where $x=0$ or $y=0$. So you can cancel a factor of $x$ from the first equation and $y$ from the second equation. You have $x + y^2 = 2\lambda$ and $y+ x^2 = 2\lambda$. So $x+y^2 = y + x^2$, or $x-y + y^2-x^2 = 0$. This factors as $(x-y)(1-x-y)$, so either $x=y$ or $x+y = 1$.
If $x=y$, then the equation of constraint gives $2x^2=2$. So $(1,1)$ and $(-1,-1)$ are solutions.
If $x+y = 1$, then the equation of constraint gives $x^2 + (1-x)^2 = 2$, or $2x^2 - 2x -1 = 0$. This gives the points $\left(\frac{1+\sqrt{3}}{2},\frac{1-\sqrt{3}}{2}\right)$ and $\left(\frac{1-\sqrt{3}}{2},\frac{1+\sqrt{3}}{2}\right)$