2.1.47 xux+yuy=2xy with u=2 on y=x2. Problem 3.5(c) Lokenath Debnath

problem number 47

Added June 3, 2019.

Problem 3.5(c) nonlinear pde’s by Lokenath Debnath, 3rd edition.

Solve for u(x,y) xux+yuy=2xy with with u=2 on y=x2.

Mathematica

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

{{u(x,y)2}}

Maple

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

u(x,y)=_F1(yx) Maple does not accept this form of Cauchy data as I.C.

____________________________________________________________________________________