So I am attempting to solve this problem from Partial Differential Equations 2nd Edition, by Evans, from Chapter 4. The issue is that I am not sure how to get past a certain point:
Use separation of variables to find a nontrivial solution of $u$ of the PDE
$$u_{x}^{2}u_{xx}+2u_{x}u_{y}u_{xy}+u_{y}^{2}u_{yy}=0$$
I started by assuming the solution $u$ is given by $u(x,y)=w(x)v(y)$. Then we have
$$u_{x} = w'(x)v(y)$$ $$u_{y} = w(x)v'(y)$$ $$u_{xx} = w''(x)v(y)$$ $$u_{yy} = w(x)v''(y)$$ $$u_{xy} = w'(x)v'(y)$$
So the equation may be rewritten (after some algebraic manipulation) as
$$\frac{(w')^{2}w''}{w^{3}}+\frac{2(w')^{2}(v')^{2}}{w^{2}v^{2}}+\frac{(v')^{2}v''}{v^{3}}=0$$
I've tried multiple things from here but each thing gives me a dead-end. Any hints as to what to do here? I imagine it may have to do with rewriting some of these terms as differentials and then using a factoring, but I am not seeing it. Perhaps I am not even in the right ballpark. I'd love some help with this.
EDIT: The solution is obtained upon assuming $u(x,y)=w(x)+v(y)$ rather than $u(x,y)=w(x)\cdot v(y)$. Whereupon the middle term of the PDE vanishes and we obtain the equation
$$(w')^{2}w'' + (v')^{2}v''=0$$
This is solved by noting that $(w')^{2}w''=-(v')^{2}v''=constant$ and using integration to find the solution.