Added May 31, 2019.
Problem Chapter 6.8.3.1, 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] +f[x,y]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*diff(w(x,y,z),x)+ b*diff(w(x,y,z),y)+f(x,y)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.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] +f[x,y]*g[z]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*diff(w(x,y,z),x)+ b*diff(w(x,y,z),y)+f(x,y)*g(z)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.3, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✓
ClearAll["Global`*"]; pde = x*D[w[x, y,z], x] + y*D[w[x, y,z], y] +(z+f[x,y])*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := x*diff(w(x,y,z),x)+ y*diff(w(x,y,z),y)+(z+f(x,y))*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.4, 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] +f[x,y]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*x*diff(w(x,y,z),x)+ b*y*diff(w(x,y,z),y)+f(x,y)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.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*y*D[w[x, y,z], y] +f[x,y]*g[x]*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := a*x*diff(w(x,y,z),x)+ b*y*diff(w(x,y,z),y)+f(x,y)*g(z)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.6, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + (f1[x]*y+f2[x])*D[w[x, y,z], y] +(g[x,y]*z+h[x,y])*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := diff(w(x,y,z),x)+ (f1(x)*y+f2(x))*diff(w(x,y,z),y)+(g(x,y)*z+h(x,y))*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.7, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + (f1[x]*y+f2[x]*y^k)*D[w[x, y,z], y] +(g[x,y]*z+h[x,y]*z^m)*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Maple ✓
restart; pde := diff(w(x,y,z),x)+ (f1(x)*y+f2(x)*y^k)*diff(w(x,y,z),y)+(g(x,y)*z+h(x,y)*z^m)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.8, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + (f1[x]*y+f2[x]*y^k)*D[w[x, y,z], y] +(g[x,y]*z+h[x,y]*Exp[lambda*z])*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Failed
Maple ✗
restart; pde := diff(w(x,y,z),x)+ (f1(x)*y+f2(x)*y^k)*diff(w(x,y,z),y)+(g(x,y)*z+h(x,y)*exp(lambda*z))*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
time expired
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.9, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + (f1[x]+f2[x]*Exp[lambda*y])*D[w[x, y,z], y] +(g[x,y]*z+h[x,y]*z^k)*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,y,z),x)+ (f1(x)+f2(x)*exp(lambda*y))*diff(w(x,y,z),y)+(g(x,y)*z+h(x,y)*z^k)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.10, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + (f1[x]+f2[x]*Exp[lambda*y])*D[w[x, y,z], y] +(g[x,y]+h[x,y]*Exp[beta*z])*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,y,z),x)+ (f1(x)+f2(x)*exp(lambda*y))*diff(w(x,y,z),y)+(g(x,y)+h(x,y)*exp(beta*z))*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.11, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✗
ClearAll["Global`*"]; pde = f1[x]*g1[y]*D[w[x, y,z], x] + f2[x]*g2[y]*D[w[x, y,z], y] +(h1[x,y]+h2[x,y]*z^m)*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Failed
Maple ✗
restart; pde := f1(x)*g1(y)*diff(w(x,y,z),x)+ f2(x)*g2(y)*diff(w(x,y,z),y)+(h1(x,y)+h2(x,y)*z^m)*diff(w(x,y,z),z)= 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
sol=()
____________________________________________________________________________________
Added May 31, 2019.
Problem Chapter 6.8.3.12, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for
Mathematica ✗
ClearAll["Global`*"]; pde = f1[x]*g1[y]*D[w[x, y,z], x] + f2[x]*g2[y]*D[w[x, y,z], y] +(h1[x,y]+h2[x,y]*Exp[lambda*z])*D[w[x,y,z],z]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
Failed