Added June 3, 2019.
Problem 3.9(a) nonlinear pde’s by Lokenath Debnath, 3rd edition.
Solve for \(u(x,y)\)
With \(u(0,y)=y^2\).
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, y], x] +x*D[u[x, y], y]== y; ic = u[0,y]==y^2; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde,ic} ,u[x, y], {x, y}], 60*10]];
Maple ✓
restart; pde := diff(u(x,y),x) + x*diff(u(x,y),y)= y; ic := u(0,y)=y^2; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic],u(x,y))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________