From Mathematica symbolic PDE document.
Korteweg-deVries (waves on shallow water surfaces) with no initial conditions
Solve for \(u(x,t)\)
Reference https://en.wikipedia.org/wiki/Korteweg%E2%80%93de_Vries_equation
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], {x, 3}] + D[u[x, t], {t}] - 6*u[x, t]*D[u[x, t], {x}] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, u[x, t], {x, t}], 60*10]];