Added December 20, 2018.
Example 27, Taken from https://www.mapleprimes.com/posts/209970-Exact-Solutions-For-PDE-And-Boundary--Initial-Conditions-2018
Solve for \(w(x_1,x_2,x_3,t)\)
With initial condition
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x1, x2, x3, t], {t, 2}] == D[w[x1, x2, x3, t], x1, x2] + D[w[x1, x2, x3, t], x1, x3] + D[w[x1, x2, x3, t], {x3, 2}] - D[w[x1, x2, x3, t], x2, x3]; ic = {w[x1, x2, x3, t0] == x1^3*x2^2 + x3, Derivative[0, 0, 0, 1][w][x1, x2, x3, t0] == -(x2*x3) + x1}; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic}, w[x1, x2, x3, t], {x1, x2, x3, t}], 60*10]];
Maple ✓
restart; pde := diff(w(x1, x2, x3, t), t$2)= diff(w(x1,x2,x3,t),x1,x2)+diff(w(x1,x2,x3,t),x1,x3)+diff(w(x1,x2,x3,t),x3$2)-diff(w(x1,x2,x3,t),x2,x3); ic := w(x1, x2, x3, t0) = x1^3*x2^2+x3, eval( diff( w(x1,x2,x3,t),t),t=t0)=-x2*x3+x1; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde, ic],w(x1,x2,x3,t))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________