Added Feb. 4, 2019.
Problem 2.8.2.1 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y], x] + (a*Exp[lambda*x]*y^2 + a*Exp[lambda*x]*f[x]*y + lambda*f[x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Maple ✓
restart; pde := diff(w(x,y),x)+( a*exp(lambda*x)*y^2 + a*exp(lambda*x)*f(x)*y+lambda*f(x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 4, 2019.
Problem 2.8.2.2 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 - a*Exp[lambda*x]*f[x]*y + a*lambda*Exp[lambda*x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Maple ✗
restart; pde := diff(w(x,y),x)+( f(x)*y^2-a*exp(lambda*x)*f(x)*y+a*lambda*exp(lambda*x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
sol=()
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 4, 2019.
Problem 2.8.2.3 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 + a*lambda*Exp[lambda*x] - a^2*Exp[2*lambda*x]*f[x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Failed
Maple ✗
restart; pde := diff(w(x,y),x)+( f(x)*y^2+a*lambda*exp(lambda*x)-a^2*exp(2*lambda*x)*f(x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
sol=()
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 4, 2019.
Problem 2.8.2.4 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 + lambda*y + a*Exp[2*lambda*x]*f[x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}, Assumptions -> a > 0], 60*10]];
Maple ✓
restart; pde := diff(w(x,y),x)+( f(x)*y^2+lambda*y+ a*exp(2*lambda*x)* f(x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) assuming a>0),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 4, 2019.
Problem 2.8.2.5 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 - (a*Exp[lambda*x] + b)*f[x]*y + a*lambda*Exp[lambda*x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Failed
Maple ✗
restart; pde := diff(w(x,y),x)+( f(x)*y^2-(a*exp(lambda*x)+b)*f(x)*y+a *lambda*exp(lambda*x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) ),output='realtime'));
sol=()
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 4, 2019.
Problem 2.8.2.6 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y], x] + (Exp[lambda*x]*f[x]*y^2 + (a*f[x] - lambda)*y + b*Exp[-(lambda*x)]*f[x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,y),x)+( exp(lambda*x)*f(x)*y^2+(a*f(x)-lambda)*y+b*exp(-lambda*x)*f(x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) ),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 4, 2019.
Problem 2.8.2.7 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 + g[x]*y + a*lambda*Exp[lambda*x] - a*Exp[lambda*x]*g[x] - a^2*Exp[2*lambda*x]*f[x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Failed
Maple ✗
restart; pde := diff(w(x,y),x)+( f(x)*y^2+ g(x)*y+a*lambda*exp(lambda*x) -a*exp(lambda*x)*g(x)-a^2*exp(2*lambda*x)*f(x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) ),output='realtime'));
sol=()
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 7, 2019.
Problem 2.8.2.8 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 - a*Exp[lambda*x]*g[x]*y + a*lambda*Exp[lambda*x] + a^2*Exp[2*lambda*x]*(g[x] - f[x]))*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Failed
Maple ✗
restart; pde := diff(w(x,y),x)+( f(x)*y^2- a*exp(lambda*x)*g(x)*y + a*lambda*exp(lambda*x) +a^2*exp(2*lambda*x)* (g(x)-f(x)))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) ),output='realtime'));
sol=()
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 7, 2019.
Problem 2.8.2.9 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 + 2*a*lambda*x*Exp[lambda*x^2] - a^2*f[x]*Exp[2*lambda*x^2])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Failed
Maple ✗
restart; pde := diff(w(x,y),x)+( f(x)*y^2+2*a*lambda*x*exp(lambda*x^2) - a^2*f(x)*exp(2*lambda*x^2))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) ),output='realtime'));
sol=()
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 7, 2019.
Problem 2.8.2.10 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*y^2 + 2*lambda*x*y + a*f[x]*Exp[2*lambda*x^2])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}, Assumptions -> a > 0], 60*10]];
Maple ✓
restart; pde := diff(w(x,y),x)+( f(x)*y^2+2*lambda*x*y+ a*f(x)*exp(2*lambda*x^2))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) assuming a>0 ),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
Added Feb. 7, 2019.
Problem 2.8.2.10 from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y)\)
Mathematica ✗
ClearAll["Global`*"]; pde = D[w[x, y], x] + (f[x]*Exp[lambda*y] + g[x])*D[w[x, y], y] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
Failed
Maple ✓
restart; pde := diff(w(x,y),x)+( f(x)*exp(lambda*y) + g(x))*diff(w(x,y),y) = 0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y)) ),output='realtime'));
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________