Added December 27, 2018.
Taken from https://en.wikipedia.org/wiki/List_of_nonlinear_partial_differential_equations
Khokhlov Zabolotskaya. Solve for \(u(x,y,t)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[D[u[x, y, t], x], t] - D[u[x, y, t]*D[u[x, y, t], x], x] == D[u[x, y, t], {y, 2}]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, u[x, y, t], {x, y, t}], 60*10]];
Failed
Maple ✓
restart; pde := diff(u(x,y,t),x,t)- diff( (u(x,y,t)* diff(u(x,y,t),x)) ,x ) = diff(u(x,y,t),y$2); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,u(x,y,t))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________