Added March 23, 2019.
Problem Chapter 1.1.4.1, from Handbook of nonlinear partial differential equations by Andrei D. Polyanin, Valentin F. Zaitsev.
Solve for \(w(x,t)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, t], t] == a*D[w[x, t], {x, 2}] + s1*(b*x + c*t)^k + s2*w[x, t]^m; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, t], {x, t}], 60*10]];
Failed