2.1.40 \((y+u) u_x+y u_y=x-y\) Problem 3.3(f) Lokenath Debnath

problem number 40

Added June 3, 2019.

Problem 3.3(f) nonlinear pde’s by Lokenath Debnath, 3rd edition.

Solve for \(u(x,y)\) \[ (y+u) u_x+y u_y=x-y \]

Mathematica

ClearAll["Global`*"]; 
pde =  (y+u[x,y])*D[u[x, y], x] + y*D[u[x, y], y] ==x-y; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde ,u[x, y], {x, y}], 60*10]];
 

Failed

Maple

restart; 
pde :=(y+u(x,y))*diff(u(x,y),x)+y*diff(u(x,y),y)=x-y; 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,u(x,y),'build')),output='realtime'));
 

\[u \left ( x,y \right ) ={\frac {1}{{\it \_C1}} \left ( -{\it \_C1}\,y-y+\sqrt {{{\it \_C1}}^{2}{x}^{2}+ \left ( 2\,yx+2\,{\it \_C2} \right ) {\it \_C1}+{y}^{2}} \right ) }\]

____________________________________________________________________________________