2.1.36 aux+buy=0 Problem 3.3(b) Lokenath Debnath

problem number 36

Added June 2, 2019.

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

Solve for u(x,y) aux+buy=0

Mathematica

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

{{u(x,y)c1(ybxa)}}

Maple

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

u(x,y)=_F1(yabxa)

____________________________________________________________________________________