I am tryig to find all the solutions of the following equation:
$$(x+y)u_x+(u-x)u_y=(y+u)$$
I've started with the following system of equations:
$$\frac{dx}{x+y}=\frac{dy}{u-x}=\frac{du}{y+u}$$
to find a first and second integral, but i can't arrive to a relation that leads to a couple of ODE's, i've tryied sum's and substractions:
$$dx=\frac{x+y}{u-x}dy$$ $$du=\frac{u+y}{u-x}dy$$ $$dx-dy=\frac{(x+y)-(u+y)}{u-x}dy$$ $$dx-dy=\frac{x-u}{u-x}dy$$ $$dx-dy=-dy$$ $$dx+dy=du$$ Taking the integral at both sides: $$x^2+y^2=u^2$$ $$u=\sqrt{x^2+y^2}$$ I don't know if this is an integral, or where to go from here, any insight will be greatly appreciated.
Kind Regards
This is a fun case of first order quasilinear equations. Firstly, I definitely recommend checking out this post for a nice trick that will save you calculation time (Solving PDE $yu_x - xu_y + x^2 - y^2 = 0$ with method of characteristics).
But by the very system of equations: $$\frac{dx}{x+y} = \frac{dy}{u-x} = \frac{du}{y+u}$$
I apply the same trick in the post I mentioned above: $$\frac{dx}{x+y} = \frac{dy}{u-x} \implies \frac{dx}{x+y} = \frac{dy}{u-x} = \frac{dx + dy}{y + u}$$
Now equating this with the last equation, I get: $$\frac{dx + dy}{y + u} = \frac{du}{y+u} \implies dx + dy = du$$
The only issue I see in your post is how you jump from $$dx + dy = du \overset{?}{\implies} x^2 + y^2 = z^2$$
If anything, this shouldn't be true, and instead we would conclude: $$z = x + y + C$$
Moreover, you can immediately check that in fact $z = x + y + C$ solves the equation.