Added Oct 10, 2019.
Problem Chapter 8.4.2.1, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + a*D[w[x, y,z], y] + b*D[w[x,y,z],z]== c*Cosh[beta*x]^n*w[x,y,z]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := diff(w(x,y,z),x)+a*diff(w(x,y,z),y)+ b*diff(w(x,y,z),z)= c*cosh(beta*x)^n*w(x,y,z); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Oct 10, 2019.
Problem Chapter 8.4.2.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*D[w[x, y,z], y] + c*Cosh[lambda*x]*D[w[x,y,z],z]== (k*Cosh[beta*x]+s*Cosh[gamma*z])*w[x,y,z]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := a*diff(w(x, y,z), x) + b*diff(w(x, y,z), y) + c*cosh(lambda*x)*diff(w(x,y,z),z)= (k*cosh(beta*x)+s*cosh(gamma*z))*w(x,y,z); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Oct 10, 2019.
Problem Chapter 8.4.2.3, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + a*Cosh[beta*x]^n*D[w[x, y,z], y] + b*Cosh[lambda*x]^k*D[w[x,y,z],z]== c*Cosh[gamma*x]^m *w[x,y,z]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := diff(w(x, y,z), x) + a*sinh(beta*x)^n*diff(w(x, y,z), y) + b*sinh(lambda*x)^k*diff(w(x,y,z),z)= c*sinh(gamma*x)^m *w(x,y,z); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Oct 10, 2019.
Problem Chapter 8.4.2.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*Cosh[beta*y]*D[w[x, y,z], y] + c*Cosh[lambda*x]*D[w[x,y,z],z]== k*Cosh[gamma*z] *w[x,y,z]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := a*diff(w(x, y,z), x) + b*cosh(beta*y)*diff(w(x, y,z), y) + c*cosh(lambda*x)*diff(w(x,y,z),z)= k*cosh(gamma*z) *w(x,y,z); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Oct 10, 2019.
Problem Chapter 8.4.2.5, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✗
ClearAll["Global`*"]; pde = a1*Cosh[lambda1*x]^n1*D[w[x, y,z], x] + b1*Cosh[beta1*y]^m1*D[w[x, y,z], y] + c1*Cosh[gamma1*x]^k1*D[w[x, y,z], z]== (a2*Cosh[lambda2*x]^n2+b2*Cosh[beta2*y]^m2+c2*Cosh[gamma2*x]^k2) *w[x,y,z]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Failed
Maple ✓
restart; local gamma; pde := a1*cosh(lambda1*x)^n1*diff(w(x, y,z), x) + b1*cosh(beta1*y)^m1*diff(w(x, y,z), y) + c1*cosh(gamma1*x)^k1*diff(w(x,y,z),z)= ( a2*cosh(lambda2*x)^n2+b2*cosh(beta2*y)^m2+c2*cosh(gamma2*x)^k2) *w(x,y,z); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________