Added June 19, 2019.
Problem Chapter 7.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[lambda*x]^k+s; 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(lambda*x)^k+s; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added June 19, 2019.
Problem Chapter 7.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*y]+s*Cosh[gamma*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*y)+s*cosh(gamma*z); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added June 19, 2019.
Problem Chapter 7.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+s; 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*cosh(beta*x)^n*diff(w(x,y,z),y)+ b*cosh(lambda*x)^k*diff(w(x,y,z),z)=c*cosh(gamma*x)^m+s; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added June 19, 2019.
Problem Chapter 7.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]; 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); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added June 19, 2019.
Problem Chapter 7.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 = a*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]== p*Cosh[lambda*x]+q; 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(gamma*z)*diff(w(x,y,z),z)=p*cosh(lambda*x)+q; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added June 19, 2019.
Problem Chapter 7.4.2.6, 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*x]^m1*D[w[x, y,z], y] + c1*Cosh[gamma1*x]^k1*D[w[x,y,z],z]== a2*Cosh[lambda1*x]^n2 + b2*Cosh[beta2*x]^m2 + c2*Cosh[gamma2*x]^k2; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := a1*cosh(lambda1*x)^n1*diff(w(x,y,z),x)+ b1*cosh(beta1*x)^m1*diff(w(x,y,z),y)+ c1*cosh(gamma1*x)^k1*diff(w(x,y,z),z)=a2*cosh(lambda1*x)^n2 + b2*cosh(beta2*x)^m2 + c2*cosh(gamma2*x)^k2; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________