Added March 23, 2019.
Problem Chapter 1.1.2.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}] - b*w[x, t]^3; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, t], {x, t}], 60*10]];
Failed
Maple ✗
restart; pde := diff(w(x,t),t)= a*diff(w(x,t),x$2) - b*w(x,t)^3; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,t))),output='realtime'));
sol=()
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added March 23, 2019.
Problem Chapter 1.1.2.2, 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] == D[w[x, t], {x, 2}] + a*w[x, t] - b*w[x, t]^3; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, t], {x, t}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,t),t)= diff(w(x,t),x$2) +a*w(x,t)- b*w(x,t)^3; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,t))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added March 23, 2019.
Problem Chapter 1.1.2.3, 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}] - b*w[x, t]^3 - c*w[x, t]^2; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, t], {x, t}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,t),t)= a*diff(w(x,t),x$2) - b*w(x,t)^3- c*w(x,t)^2; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,t))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added March 23, 2019.
Problem Chapter 1.1.2.4, 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] == D[w[x, t], {x, 2}] - w[x, t]*(1 - w[x, t])*(a - w[x, t]); sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, t], {x, t}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,t),t)= diff(w(x,t),x$2) - w(x,t)*(1-w(x,t))*(a-w(x,t)); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,t))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added March 23, 2019.
Problem Chapter 1.1.2.5, 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}] + b0 + b1*w[x, t] + b2*w[x, t]^2 + b3*w[x, t]^3; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, t], {x, t}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,t),t)= a*diff(w(x,t),x$2) +b0+b1*w(x,t)+b2*w(x,t)^2+b3*w(x,t)^3; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,t))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________