Added May 19, 2019.
Problem Chapter 6.4.5.1, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = a*Sinh[lambda*x]*D[w[x, y,z], x] + b*Sinh[beta*y]*D[w[x, y,z], y] +c*Cosh[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*sinh(lambda*x)*diff(w(x,y,z),x)+ b*sinh(beta*y)*diff(w(x,y,z),y)+c*cosh(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.5.2, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = a*Sinh[lambda*x]*D[w[x, y,z], x] + b*Cosh[beta*y]*D[w[x, y,z], y] +c*Cosh[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*sinh(lambda*x)*diff(w(x,y,z),x)+ b*cosh(beta*y)*diff(w(x,y,z),y)+c*cosh(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.5.3, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✗
ClearAll["Global`*"]; pde = a*Sinh[beta*y]*D[w[x, y,z], x] + b*Sinh[lambda*x]*D[w[x, y,z], y] +c*Sinh[lambda*x]*Sinh[beta*y]*Cosh[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*sinh(beta*y)*diff(w(x,y,z),x)+ b*sinh(lambda*x)*diff(w(x,y,z),y)+c*sinh(lambda*x)*sinh(beta*y)*cosh(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.5.4, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = a*Cosh[beta*y]*D[w[x, y,z], x] + b*Tanh[lambda*x]*D[w[x, y,z], y] +c*Cosh[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*cosh(beta*y)*diff(w(x,y,z),x)+ b*tanh(lambda*x)*diff(w(x,y,z),y)+c*cosh(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.5.5, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✗
ClearAll["Global`*"]; pde = a*Coth[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*coth(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'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added May 19, 2019.
Problem Chapter 6.4.5.6, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✗
ClearAll["Global`*"]; pde = a*Coth[beta*y]*D[w[x, y,z], x] + b*Tanh[lambda*x]*D[w[x, y,z], y] +c*Coth[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*coth(beta*y)*diff(w(x,y,z),x)+ b*tanh(lambda*x)*diff(w(x,y,z),y)+c*coth(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'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________