Added May 19, 2019.
Problem Chapter 6.4.3.1, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = a*D[w[x, y,z], x] + b*D[w[x, y,z], y] +c*Tanh[gamma*z]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*diff(w(x,y,z),x)+ b*diff(w(x,y,z),y)+c*tanh(gamma*z)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added May 19, 2019.
Problem Chapter 6.4.3.2, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = a*D[w[x, y,z], x] + b*Tanh[beta*x]*D[w[x, y,z], y] +c*Tanh[lambda*x]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*diff(w(x,y,z),x)+ b*tanh(beta*x)*diff(w(x,y,z),y)+c*tanh(lambda*x)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added May 19, 2019.
Problem Chapter 6.4.3.3, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = a*D[w[x, y,z], x] + b*Tanh[beta*y]*D[w[x, y,z], y] +c*Tanh[lambda*x]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*diff(w(x,y,z),x)+ b*tanh(beta*y)*diff(w(x,y,z),y)+c*tanh(lambda*x)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added May 19, 2019.
Problem Chapter 6.4.3.4, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = a*D[w[x, y,z], x] + b*Tanh[beta*y]*D[w[x, y,z], y] +c*Tanh[gamma*z]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*diff(w(x,y,z),x)+ b*tanh(beta*y)*diff(w(x,y,z),y)+c*tanh(gamma*z)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z),'build')),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added May 19, 2019.
Problem Chapter 6.4.3.5, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✗
ClearAll["Global`*"]; pde = a*Tanh[lambda*x]*D[w[x, y,z], x] + b*Tanh[beta*y]*D[w[x, y,z], y] +c*Tanh[gamma*z]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Failed
Maple ✓
restart; pde := a*tanh(lambda*x)*diff(w(x,y,z),x)+ b*tanh(beta*y)*diff(w(x,y,z),y)+c*tanh(gamma*z)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z),'build')),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added May 19, 2019.
Problem Chapter 6.4.3.6, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✗
ClearAll["Global`*"]; pde = a*Tanh[beta*y]*D[w[x, y,z], x] + b*Tanh[lambda*x]*D[w[x, y,z], y] +c*Tanh[gamma*z]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Failed
Maple ✓
restart; pde := a*tanh(beta*y)*diff(w(x,y,z),x)+ b*tanh(lambda*x)*diff(w(x,y,z),y)+c*tanh(gamma*z)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z),'build')),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________