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