7.5.24 8.2

7.5.24.1 [1357] Problem 1
7.5.24.2 [1358] Problem 2
7.5.24.3 [1359] Problem 3
7.5.24.4 [1360] Problem 4
7.5.24.5 [1361] Problem 5
7.5.24.6 [1362] Problem 6

7.5.24.1 [1357] Problem 1

problem number 1357

Added April 13, 2019.

Problem Chapter 5.8.2.1, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.

Solve for \(w(x,y)\)

\[ a w_x + b w_y = c w + f(x)g(x) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*D[w[x, y], y] == c*w[x,y]+f[x]*g[x]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 

\[\left \{\left \{w(x,y)\to e^{\frac {c x}{a}} \left (\int _1^x\frac {e^{-\frac {c K[1]}{a}} f(K[1]) g(K[1])}{a}dK[1]+c_1\left (y-\frac {b x}{a}\right )\right )\right \}\right \}\]

Maple

restart; 
pde :=  a*diff(w(x,y),x)+ b*diff(w(x,y),y) = c*w(x,y)+f(x)*g(x); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 

\[w \left (x , y\right ) = \left (\int \frac {{\mathrm e}^{-\frac {c x}{a}} f \left (x \right ) g \left (x \right )}{a}d x +\textit {\_F1} \left (\frac {a y -b x}{a}\right )\right ) {\mathrm e}^{\frac {c x}{a}}\]

____________________________________________________________________________________

7.5.24.2 [1358] Problem 2

problem number 1358

Added April 13, 2019.

Problem Chapter 5.8.2.2, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.

Solve for \(w(x,y)\)

\[ a w_x + b w_y = c w + x f(x)+ y g(x) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*D[w[x, y], y] == c*w[x,y]+x*f[x]+y*g[x]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 

\[\left \{\left \{w(x,y)\to e^{\frac {c x}{a}} \left (\int _1^x\frac {e^{-\frac {c K[1]}{a}} (a f(K[1]) K[1]+g(K[1]) (-b x+a y+b K[1]))}{a^2}dK[1]+c_1\left (y-\frac {b x}{a}\right )\right )\right \}\right \}\]

Maple

restart; 
pde :=  a*diff(w(x,y),x)+ b*diff(w(x,y),y) = c*w(x,y)+x*f(x)+y*g(x); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 

\[w \left (x , y\right ) = \left (\int _{}^{x}\frac {\left (\textit {\_a} a f \left (\textit {\_a} \right )+\left (a y -\left (-\textit {\_a} +x \right ) b \right ) g \left (\textit {\_a} \right )\right ) {\mathrm e}^{-\frac {\textit {\_a} c}{a}}}{a^{2}}d \textit {\_a} +\textit {\_F1} \left (\frac {a y -b x}{a}\right )\right ) {\mathrm e}^{\frac {c x}{a}}\]

____________________________________________________________________________________

7.5.24.3 [1359] Problem 3

problem number 1359

Added April 13, 2019.

Problem Chapter 5.8.2.3, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.

Solve for \(w(x,y)\)

\[ a w_x + b w_y = f(x) w + g(x) h(x) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*D[w[x, y], y] == f[x]*w[x,y]+g[x]*h[x]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 

\[\left \{\left \{w(x,y)\to \exp \left (\int _1^x\frac {f(K[1])}{a}dK[1]\right ) \left (\int _1^x\frac {\exp \left (-\int _1^{K[2]}\frac {f(K[1])}{a}dK[1]\right ) g(K[2]) h(K[2])}{a}dK[2]+c_1\left (y-\frac {b x}{a}\right )\right )\right \}\right \}\]

Maple

restart; 
pde :=  a*diff(w(x,y),x)+ b*diff(w(x,y),y) = f(x)*w(x,y)+g(x)*h(x); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 

\[w \left (x , y\right ) = \left (\int \frac {{\mathrm e}^{-\frac {\int f \left (x \right )d x}{a}} g \left (x \right ) h \left (x \right )}{a}d x +\textit {\_F1} \left (\frac {a y -b x}{a}\right )\right ) {\mathrm e}^{\int \frac {f \left (x \right )}{a}d x}\]

____________________________________________________________________________________

7.5.24.4 [1360] Problem 4

problem number 1360

Added April 13, 2019.

Problem Chapter 5.8.2.4, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.

Solve for \(w(x,y)\)

\[ a w_x + b w_y = (f(x)+g(y)) w + p(x)+q(y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*D[w[x, y], y] == (f[x]+g[y])*w[x,y]+p[x]+q[y]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 

\[\left \{\left \{w(x,y)\to \exp \left (\int _1^x\frac {f(K[1])+g\left (y+\frac {b (K[1]-x)}{a}\right )}{a}dK[1]\right ) \left (\int _1^x\frac {\exp \left (-\int _1^{K[2]}\frac {f(K[1])+g\left (y+\frac {b (K[1]-x)}{a}\right )}{a}dK[1]\right ) \left (p(K[2])+q\left (y+\frac {b (K[2]-x)}{a}\right )\right )}{a}dK[2]+c_1\left (y-\frac {b x}{a}\right )\right )\right \}\right \}\]

Maple

restart; 
pde :=  a*diff(w(x,y),x)+ b*diff(w(x,y),y) = (f(x)+g(y))*w(x,y)+p(x)+q(y); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 

\[w \left (x , y\right ) = \left (\int _{}^{x}\frac {\left (p \left (\textit {\_b} \right )+q \left (\frac {a y -\left (-\textit {\_b} +x \right ) b}{a}\right )\right ) {\mathrm e}^{-\frac {\int \left (f \left (\textit {\_b} \right )+g \left (\frac {a y -\left (-\textit {\_b} +x \right ) b}{a}\right )\right )d \textit {\_b}}{a}}}{a}d \textit {\_b} +\textit {\_F1} \left (\frac {a y -b x}{a}\right )\right ) {\mathrm e}^{\int _{}^{x}\frac {f \left (\textit {\_a} \right )+g \left (\frac {a y -\left (-\textit {\_a} +x \right ) b}{a}\right )}{a}d \textit {\_a}}\]

____________________________________________________________________________________

7.5.24.5 [1361] Problem 5

problem number 1361

Added April 13, 2019.

Problem Chapter 5.8.2.5, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.

Solve for \(w(x,y)\)

\[ a x w_x + b y w_y = c w + f(x) g(y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*x*D[w[x, y], x] + b*y*D[w[x, y], y] == c*w[x,y]+f[x]*g[y]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 

\[\left \{\left \{w(x,y)\to x^{\frac {c}{a}} \left (\int _1^x\frac {f(K[1]) g\left (x^{-\frac {b}{a}} y K[1]^{\frac {b}{a}}\right ) K[1]^{-\frac {a+c}{a}}}{a}dK[1]+c_1\left (y x^{-\frac {b}{a}}\right )\right )\right \}\right \}\]

Maple

restart; 
pde :=  a*x*diff(w(x,y),x)+ b*y*diff(w(x,y),y) = c*w(x,y)+f(x)*g(y); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 

\[w \left (x , y\right ) = \left (\int _{}^{x}\frac {\textit {\_a}^{\frac {-a -c}{a}} f \left (\textit {\_a} \right ) g \left (y \,\textit {\_a}^{\frac {b}{a}} x^{-\frac {b}{a}}\right )}{a}d \textit {\_a} +\textit {\_F1} \left (y \,x^{-\frac {b}{a}}\right )\right ) x^{\frac {c}{a}}\]

____________________________________________________________________________________

7.5.24.6 [1362] Problem 6

problem number 1362

Added April 13, 2019.

Problem Chapter 5.8.2.6, from Handbook of first order partial differential equations by Polyanin, Zaitsev, Moussiaux.

Solve for \(w(x,y)\)

\[ f_1(x) w_x + f_2(y) w_y = a w + g_1(x)+g_2(y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  f1[x]*D[w[x, y], x] + f2[y]*D[w[x, y], y] == a*w[x,y]+g1[x]+g2[y]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 

Failed

Maple

restart; 
pde :=  f1(x)*diff(w(x,y),x)+ f2(y)*diff(w(x,y),y) = a*w(x,y)+g1(x)+g2(y); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 

\[w \left (x , y\right ) = \left (\int _{}^{x}\frac {\left (\mathit {g1} \left (\textit {\_f} \right )+\mathit {g2} \left (\RootOf \left (\int \frac {1}{\mathit {f1} \left (\textit {\_f} \right )}d \textit {\_f} -\left (\int \frac {1}{\mathit {f1} \left (x \right )}d x \right )+\int \frac {1}{\mathit {f2} \left (y \right )}d y -\left (\int _{}^{\textit {\_Z}}\frac {1}{\mathit {f2} \left (\textit {\_a} \right )}d \textit {\_a} \right )\right )\right )\right ) {\mathrm e}^{-a \left (\int \frac {1}{\mathit {f1} \left (\textit {\_f} \right )}d \textit {\_f} \right )}}{\mathit {f1} \left (\textit {\_f} \right )}d \textit {\_f} +\textit {\_F1} \left (-\left (\int \frac {1}{\mathit {f1} \left (x \right )}d x \right )+\int \frac {1}{\mathit {f2} \left (y \right )}d y \right )\right ) {\mathrm e}^{\int \frac {a}{\mathit {f1} \left (x \right )}d x}\]

____________________________________________________________________________________