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