Added Jan 6, 2020.
Problem Chapter 9.2.2.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]+(a1*x^2+a0)*D[w[x,y,z],y]+(b1*x^2+b0)*D[w[x,y,z],z]==(c1*x+c0)*w[x,y,z]+s1*x^2+s0; 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__1*x^2+a__0)*diff(w(x,y,z),y)+ (b__1*x^2+b__0)*diff(w(x,y,z),z)=(c__1*x+c__0)*w(x,y,z)+s__1*x^2+s_0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added Jan 6, 2020.
Problem Chapter 9.2.2.2, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x,y,z],x]+(b1*x^2+b0)*D[w[x,y,z],y]+(c1*y^2+c0)*D[w[x,y,z],z]==a*w[x,y,z]+s1*x^2+s0; 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__1*x^2+b__0)*diff(w(x,y,z),y)+ (c__1*y^2+c__0)*diff(w(x,y,z),z)=a*w(x,y,z)+s__1*x^2+s_0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added Jan 6, 2020.
Problem Chapter 9.2.2.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*y+k1*x^2+k0)*D[w[x,y,z],y]+(b*z+n1*x^2+n0)*D[w[x,y,z],z]==(c1*x+c0)*w[x,y,z]+s1*x+s0; 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*y+k__1*x^2+k__0)*diff(w(x,y,z),y)+ (b*z+n__1*x^2+n__0)*diff(w(x,y,z),z)=(c__1*x+c__0)*w(x,y,z)+s__1*x+s_0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added Jan 6, 2020.
Problem Chapter 9.2.2.4, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x,y,z],x]+(a2*x*y+a1*x+a0)*D[w[x,y,z],y]+(b3*y*z+b2*y^2+b1*x^2+b0)*D[w[x,y,z],z]==(c3*z+c2*y+c1*x+c0)*w[x,y,z]+s1*x*y+s2*x*z; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
$Aborted
Maple ✓
restart; local gamma; pde := diff(w(x,y,z),x)+ (a__2*x*y+a__1*x+a__0)*diff(w(x,y,z),y)+ (b__3*y*z+b__2*y^2+b__1*x^2+b__0)*diff(w(x,y,z),z)=(c__3*z+c__2*y+c__1*x+c__0)*w(x,y,z)+s__1*x*y+s__2*x*z; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added Jan 6, 2020.
Problem Chapter 9.2.2.5, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✓
ClearAll["Global`*"]; pde = a*x*D[w[x,y,z],x]+b*x*D[w[x,y,z],y]+c*z*D[w[x,y,z],z]==k*x*w[x,y,z]+s*x^2; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := a*x*diff(w(x,y,z),x)+ b*x*diff(w(x,y,z),y)+ c*z*diff(w(x,y,z),z)=k*x*w(x,y,z)+s*x^2; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added Jan 6, 2020.
Problem Chapter 9.2.2.6, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✓
ClearAll["Global`*"]; pde = a*x*D[w[x,y,z],x]+b*y*D[w[x,y,z],y]+c*z*D[w[x,y,z],z]==k*x*w[x,y,z]+s*x^2; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := a*x*diff(w(x,y,z),x)+ b*y*diff(w(x,y,z),y)+ c*z*diff(w(x,y,z),z)=k*x*w(x,y,z)+s*x^2; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added Jan 6, 2020.
Problem Chapter 9.2.2.7, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✓
ClearAll["Global`*"]; pde = a*x^2*D[w[x,y,z],x]+b*y^2*D[w[x,y,z],y]+c*z^2*D[w[x,y,z],z]==(k*x+s)*w[x,y,z]+p*x+q; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x,y,z}], 60*10]];
Maple ✓
restart; local gamma; pde := a*x^2*diff(w(x,y,z),x)+ b*y^2*diff(w(x,y,z),y)+ c*z^2*diff(w(x,y,z),z)=(k*x+s)*w(x,y,z)+p*x+q; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________