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