Added June 3, 2019.
Problem 3.5(c) nonlinear pde’s by Lokenath Debnath, 3rd edition.
Solve for \(u(x,y)\) \[ x u_x+y u_y=2 x y \] with with \(u=2\) on \(y=x^2\).
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)\to 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 \left (x , y\right ) = \textit {\_F1} \left (\frac {y}{x}\right )\]
____________________________________________________________________________________