Added June 1, 2019.
Problem Chapter 7.2.3.1, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
\[ w_x + a w_y + b w_z = 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]==x*y*z; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
\[\left \{\left \{w(x,y,z)\to c_1(y-a x,z-b x)+\frac {1}{12} x^2 (a x (b x-2 z)-2 b x y+6 y z)\right \}\right \}\]
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)=x*y*z; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
\[w \left ( x,y,z \right ) ={\it \_F1} \left ( -ax+y,-bx+z \right ) +1/12\,ab{x}^{4}+1/12\, \left ( -2\,za-2\,by \right ) {x}^{3}+1/2\,{x}^{2}yz\]
____________________________________________________________________________________
Added June 1, 2019.
Problem Chapter 7.2.3.2, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
\[ a w_x + b w_y + c w_z = k x^3+s y^2 \]
Mathematica ✓
ClearAll["Global`*"]; pde = a*D[w[x, y,z], x] + b*D[w[x, y,z], y] +c*D[w[x,y,z],z]==k*x^3+s*y^2; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
\[\left \{\left \{w(x,y,z)\to c_1\left (y-\frac {b x}{a},z-\frac {c x}{a}\right )+\frac {x \left (3 a^2 \left (k x^3+4 s y^2\right )-12 a b s x y+4 b^2 s x^2\right )}{12 a^3}\right \}\right \}\]
Maple ✓
restart; local gamma; pde := a*diff(w(x,y,z),x)+ b*diff(w(x,y,z),y)+c*diff(w(x,y,z),z)=k*x^3+s*y^2; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
\[w \left ( x,y,z \right ) =1/4\,{\frac {k{x}^{4}}{a}}+1/3\,{\frac {{b}^{2}s{x}^{3}}{{a}^{3}}}-{\frac {bsy{x}^{2}}{{a}^{2}}}+{\frac {s{y}^{2}x}{a}}+{\it \_F1} \left ( {\frac {ya-bx}{a}},{\frac {za-cx}{a}} \right ) \]
____________________________________________________________________________________
Added June 1, 2019.
Problem Chapter 7.2.3.3, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
\[ a w_x + b y w_y + c z w_z = k x+ s \sqrt x \]
Mathematica ✓
ClearAll["Global`*"]; pde = a*D[w[x, y,z], x] + b*y*D[w[x, y,z], y] +c*z*D[w[x,y,z],z]==k*x+s*Sqrt[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
\[\left \{\left \{w(x,y,z)\to \frac {6 a c_1\left (y e^{-\frac {b x}{a}},z e^{-\frac {c x}{a}}\right )+3 k x^2+4 s x^{3/2}}{6 a}\right \}\right \}\]
Maple ✓
restart; local gamma; pde := a*diff(w(x,y,z),x)+ b*y*diff(w(x,y,z),y)+c*z*diff(w(x,y,z),z)=k*x+s*sqrt(x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
\[w \left ( x,y,z \right ) =1/2\,{\frac {{x}^{2}k}{a}}+2/3\,{\frac {s{x}^{3/2}}{a}}+{\it \_F1} \left ( y{{\rm e}^{-{\frac {bx}{a}}}},z{{\rm e}^{-{\frac {cx}{a}}}} \right ) \]
____________________________________________________________________________________
Added June 1, 2019.
Problem Chapter 7.2.3.4, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
\[ w_x + a z w_y + b y w_z = c \sqrt x + s \]
Mathematica ✓
ClearAll["Global`*"]; pde = D[w[x, y,z], x] + a*z*D[w[x, y,z], y] +b*y*D[w[x,y,z],z]==c*Sqrt[x]+s; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
\[\left \{\left \{w(x,y,z)\to c_1\left (\frac {e^{-\sqrt {a} \sqrt {b} x} \left (\sqrt {b} y \left (e^{2 \sqrt {a} \sqrt {b} x}+1\right )-\sqrt {a} z \left (e^{2 \sqrt {a} \sqrt {b} x}-1\right )\right )}{2 \sqrt {b}},\frac {e^{-\sqrt {a} \sqrt {b} x} \left (\sqrt {a} z \left (e^{2 \sqrt {a} \sqrt {b} x}+1\right )-\sqrt {b} y \left (e^{2 \sqrt {a} \sqrt {b} x}-1\right )\right )}{2 \sqrt {a}}\right )+\frac {2}{3} c x^{3/2}+s x\right \}\right \}\]
Maple ✓
restart; local gamma; pde := diff(w(x,y,z),x)+ a*z*diff(w(x,y,z),y)+b*y*diff(w(x,y,z),z)=c*sqrt(x)+s; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
\[w \left ( x,y,z \right ) =\int ^{y}\!{\frac {1}{\sqrt { \left ( {z}^{2}a+ \left ( {{\it \_a}}^{2}-{y}^{2} \right ) b \right ) a}} \left ( c\sqrt {{\frac {1}{\sqrt {ab}} \left ( x\sqrt {ab}-\ln \left ( {\frac {aby+\sqrt {{a}^{2}{z}^{2}}\sqrt {ab}}{\sqrt {ab}}} \right ) +\ln \left ( {\frac {{\it \_a}\,ab+\sqrt { \left ( {z}^{2}a+ \left ( {{\it \_a}}^{2}-{y}^{2} \right ) b \right ) a}\sqrt {ab}}{\sqrt {ab}}} \right ) \right ) }}+s \right ) }{d{\it \_a}}+{\it \_F1} \left ( {\frac {{z}^{2}a-b{y}^{2}}{a}},-{\frac {1}{\sqrt {ab}} \left ( -x\sqrt {ab}+\ln \left ( {\frac {aby+\sqrt {{a}^{2}{z}^{2}}\sqrt {ab}}{\sqrt {ab}}} \right ) \right ) } \right ) \]
____________________________________________________________________________________
Added June 1, 2019.
Problem Chapter 7.2.3.5, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.
Solve for \(w(x,y,z)\)
\[ a x^2 w_x + b y^2 w_y + c z^2 w_z = k x y z \]
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*y*z; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y,z], {x, y,z}], 60*10]];
\[\left \{\left \{w(x,y,z)\to c_1\left (\frac {b}{a x}-\frac {1}{y},\frac {c}{a x}-\frac {1}{z}\right )+\frac {k x y z \left (b y (a x-c z) \log \left (\frac {a x}{y}\right )+c z (b y-a x) \log \left (\frac {a x}{z}\right )\right )}{(a x-b y) (a x-c z) (b y-c z)}\right \}\right \}\]
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*y*z; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y,z))),output='realtime'));
\[w \left ( x,y,z \right ) ={\frac {1}{ \left ( by-cz \right ) \left ( ax-by \right ) \left ( ax-cz \right ) } \left ( \left ( by-cz \right ) \left ( ax-by \right ) \left ( ax-cz \right ) {\it \_F1} \left ( {\frac {ax-by}{axy}},{\frac {ax-cz}{axz}} \right ) +k \left ( \left ( ax-cz \right ) by\ln \left ( {\frac {ax}{y}} \right ) -cz\ln \left ( {\frac {ax}{z}} \right ) \left ( ax-by \right ) \right ) zxy \right ) }\]
____________________________________________________________________________________