Added Jan 18, 2020.
Problem Chapter 9.3.1.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*Exp[beta*x]*w[x,y,z]+ k*Exp[lambda*x]; 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*exp(beta*x)*w(x,y,z)+ k*exp(lambda*x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Jan 18, 2020.
Problem Chapter 9.3.1.2, 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*Exp[beta*x]*D[w[x,y,z],y]+b*Exp[lambda*x]*D[w[x,y,z],z]==c*Exp[gamma*x]*w[x,y,z]+ s*Exp[mu*x]; 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*exp(beta*x)*diff(w(x,y,z),y)+ b*exp(lambda*x)*diff(w(x,y,z),z)=c*exp(gamma*x)*w(x,y,z)+ s*exp(mu*x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Jan 18, 2020.
Problem Chapter 9.3.1.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]+ b*Exp[beta*x]*D[w[x,y,z],y]+c*Exp[lambda*y]*D[w[x,y,z],z]==a*w[x,y,z]+ s*Exp[gamma*x]; 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)+ b*exp(beta*x)*diff(w(x,y,z),y)+ c*exp(lambda*y)*diff(w(x,y,z),z)=a*w(x,y,z)+ s*exp(gamma*x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Jan 18, 2020.
Problem Chapter 9.3.1.4, 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*Exp[beta*x]*D[w[x,y,z],y]+b*Exp[lambda*z]*D[w[x,y,z],z]==c*w[x,y,z]+ k*Exp[gamma*x]; 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*exp(beta*x)*diff(w(x,y,z),y)+ b*exp(lambda*z)*diff(w(x,y,z),z)=c*w(x,y,z)+ k*exp(gamma*x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Jan 18, 2020.
Problem Chapter 9.3.1.5, 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]+ (a1*Exp[sigma*x]+ a2*Exp[lambda*y] )*D[w[x,y,z],y]+(b1*Exp[mu*y]+ b2*Exp[beta*z])*D[w[x,y,z],z]==c1*w[x,y,z]+ c2*Exp[nu*x]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Failed
Maple ✓
restart; local gamma; pde := diff(w(x,y,z),x)+ (a__1*exp(sigma*x)+ a__2*exp(lambda*y) )*diff(w(x,y,z),y)+ (b__1*exp(mu*y)+ b__2*exp(beta*z))*diff(w(x,y,z),z)=c__1*w(x,y,z)+ c__2*exp(nu*x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Jan 18, 2020.
Problem Chapter 9.3.1.6, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✓
ClearAll["Global`*"]; pde = b1*Exp[lambda1*x]*D[w[x,y,z],x]+ b2*Exp[lambda2*y]*D[w[x,y,z],y]+b3*Exp[lambda3*z]*D[w[x,y,z],z]==a*w[x,y,z]+ c1*Exp[beta1*x]+c2*Exp[beta2*y]+c3*Exp[beta3*z]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := b__1*exp(lambda__1*x)*diff(w(x,y,z),x)+ b__2*exp(lambda__2*y)*diff(w(x,y,z),y)+ b__3*exp(lambda__3*z)*diff(w(x,y,z),z)=a*w(x,y,z)+ c__1*exp(beta__1*x)+ c__2*exp(beta__2*y)+ c__3*exp(beta__3*z); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Jan 18, 2020.
Problem Chapter 9.3.1.7, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
Mathematica ✗
ClearAll["Global`*"]; pde = a1*Exp[sigma1*x+beta1*y]*D[w[x,y,z],x]+ a2*Exp[sigma2*y+beta2*y]*D[w[x,y,z],y]+( b1*Exp[nu1*x+mu1*y] + b2*Exp[nu2*x+mu2*y+lambda*z])*D[w[x,y,z],z]==c1*w[x,y,z]+ c2; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Failed
Maple ✗
restart; local gamma; pde := a__1*exp(sigma__1*x+beta__1*y)*diff(w(x,y,z),x)+ a__2*exp(sigma__2*y+beta__2*y)*diff(w(x,y,z),y)+ ( b__1*exp(nu__1*x+mu__1*y) + b__2*exp(nu__2*x+mu__2*y+lambda*z))*diff(w(x,y,z),z)=c__1*w(x,y,z)+ c__2; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
time expired
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________