6.5.17 6.4

6.5.17.1 [1309] Problem 1
6.5.17.2 [1310] Problem 2
6.5.17.3 [1311] Problem 3
6.5.17.4 [1312] Problem 4
6.5.17.5 [1313] Problem 5
6.5.17.6 [1314] Problem 6
6.5.17.7 [1315] Problem 7

6.5.17.1 [1309] Problem 1

problem number 1309

Added April 11, 2019.

Problem Chapter 5.6.4.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 + k \cot (\lambda x+\mu y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*D[w[x, y], y] == c*w[x,y]+k*Cot[lambda*x+mu*y]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 
\[\left \{\left \{w(x,y)\to e^{\frac {c x}{a}} c_1\left (y-\frac {b x}{a}\right )+\frac {k \left ((c-2 i (a \lambda +b \mu )) \operatorname {Hypergeometric2F1}\left (1,\frac {i c}{2 (a \lambda +b \mu )},\frac {i c+2 a \lambda +2 b \mu }{2 a \lambda +2 b \mu },e^{2 i (\lambda x+\mu y)}\right )+c e^{2 i (\lambda x+\mu y)} \operatorname {Hypergeometric2F1}\left (1,\frac {i c}{2 (a \lambda +b \mu )}+1,\frac {i c}{2 (a \lambda +b \mu )}+2,e^{2 i (\lambda x+\mu y)}\right )\right )}{c (-2 (a \lambda +b \mu )-i c)}\right \}\right \}\]

Maple

restart; 
pde :=  a*diff(w(x,y),x)+ b*diff(w(x,y),y) =c*w(x,y)+k*cot(lambda*x+mu*y); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 
\[w \left (x , y\right ) = \left (\frac {k \int _{}^{x}\cot \left (\frac {\left (a y -b \left (x -\textit {\_a} \right )\right ) \mu +\textit {\_a} a \lambda }{a}\right ) {\mathrm e}^{-\frac {c \textit {\_a}}{a}}d \textit {\_a}}{a}+f_{1} \left (\frac {a y -x b}{a}\right )\right ) {\mathrm e}^{\frac {c x}{a}}\]

___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

6.5.17.2 [1310] Problem 2

problem number 1310

Added April 11, 2019.

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

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

\[ a w_x + b w_y = w + c_1 \cot ^k(\lambda x) + c_2 \cot ^n(\beta y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*D[w[x, y], y] == w[x,y]+ c1*Cot[lambda*x]^k + c2*Cot[beta*y]^n; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 
\[\left \{\left \{w(x,y)\to e^{\frac {x}{a}} \left (\int _1^x\frac {e^{-\frac {K[1]}{a}} \left (\text {c1} \cot ^k(\lambda K[1])+\text {c2} \cot ^n\left (\beta \left (y+\frac {b (K[1]-x)}{a}\right )\right )\right )}{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) = w(x,y)+ c1*cot(lambda*x)^k + c2*cot(beta*y)^n; 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 
\[w \left (x , y\right ) = \left (\frac {\int _{}^{x}{\mathrm e}^{-\frac {\textit {\_a}}{a}} \left (\operatorname {c1} \cot \left (\lambda \textit {\_a} \right )^{k}+\operatorname {c2} \cot \left (\frac {\left (a y -b \left (x -\textit {\_a} \right )\right ) \beta }{a}\right )^{n}\right )d \textit {\_a}}{a}+f_{1} \left (\frac {a y -b x}{a}\right )\right ) {\mathrm e}^{\frac {x}{a}}\]

___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

6.5.17.3 [1311] Problem 3

problem number 1311

Added April 11, 2019.

Problem Chapter 5.6.4.3, 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 + \cot ^k(\lambda x) \cot ^n(\beta y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*D[w[x, y], y] == c*w[x,y]+ Cot[lambda*x]^k * Cot[beta*y]^n; 
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}} \cot ^k(\lambda K[1]) \cot ^n\left (\beta \left (y+\frac {b (K[1]-x)}{a}\right )\right )}{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)+ cot(lambda*x)^k *cot(beta*y)^n; 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 
\[w \left (x , y\right ) = \left (\frac {\int _{}^{x}\cot \left (\lambda \textit {\_a} \right )^{k} \cot \left (\frac {\left (a y -b \left (x -\textit {\_a} \right )\right ) \beta }{a}\right )^{n} {\mathrm e}^{-\frac {c \textit {\_a}}{a}}d \textit {\_a}}{a}+f_{1} \left (\frac {a y -b x}{a}\right )\right ) {\mathrm e}^{\frac {c x}{a}}\]

___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

6.5.17.4 [1312] Problem 4

problem number 1312

Added April 11, 2019.

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

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

\[ a w_x + b \cot (\mu y) w_y = c \cot (\lambda x) w + k \cot (\nu x) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*D[w[x, y], x] + b*Cot[mu*y]*D[w[x, y], y] == c*Cot[lambda*x]*w[x,y]+k*Cot[nu*x]; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 
\begin{align*}& \left \{w(x,y)\to \sin ^{\frac {c}{a \lambda }}(\lambda x) \left (\int _1^x\frac {k \cot (\nu K[1]) \sin ^{-\frac {c}{a \lambda }}(\lambda K[1])}{a}dK[1]+c_1\left (\frac {\log (\sec (\mu y))}{\mu }-\frac {b x}{a}\right )\right )\right \}\\& \left \{w(x,y)\to \sin ^{\frac {c}{a \lambda }}(\lambda x) \left (\int _1^x\frac {k \cot (\nu K[2]) \sin ^{-\frac {c}{a \lambda }}(\lambda K[2])}{a}dK[2]+c_1\left (\frac {\log (\sec (\mu y))}{\mu }-\frac {b x}{a}\right )\right )\right \}\\\end{align*}

Maple

restart; 
pde :=  a*diff(w(x,y),x)+ b*cot(mu*y)*diff(w(x,y),y) = c*cot(lambda*x)*w(x,y)+ k*cot(nu*x); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 
\[w \left (x , y\right ) = \left (\frac {k \int _{}^{y}\cot \left (\nu \left (x +\frac {a \ln \left (\sec \left (\mu \textit {\_a} \right )^{2}\right )}{2 b \mu }-\frac {a \ln \left (\sec \left (\mu y \right )^{2}\right )}{2 b \mu }\right )\right ) {\left ({\csc \left (\frac {\lambda \left (2 x b \mu -a \left (-\ln \left (\sec \left (\mu \textit {\_a} \right )^{2}\right )+\ln \left (\sec \left (\mu y \right )^{2}\right )\right )\right )}{2 b \mu }\right )}^{2}\right )}^{\frac {c}{2 \lambda a}} \tan \left (\mu \textit {\_a} \right )d \textit {\_a}}{b}+f_{1} \left (x -\frac {a \ln \left (\sec \left (\mu y \right )^{2}\right )}{2 b \mu }\right )\right ) \left (\csc \left (\lambda x \right )^{2}\right )^{-\frac {c}{2 \lambda a}}\]

___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

6.5.17.5 [1313] Problem 5

problem number 1313

Added April 11, 2019.

Problem Chapter 5.6.4.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 + k \cot (\lambda x+\nu y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*x*D[w[x, y], x] + b*y*D[w[x, y], y] == c*w[x,y]+k*Cot[lambda*x+nu*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 {k \cot \left (\nu y K[1]^{\frac {b}{a}} x^{-\frac {b}{a}}+\lambda K[1]\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)+k*cot(lambda*x+nu*y); 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 
\[w \left (x , y\right ) = \frac {x^{\frac {c}{a}} \left (f_{1} \left (y \,x^{-\frac {b}{a}}\right ) a +k \int _{}^{x}\cot \left (\lambda \textit {\_a} +\nu y \,x^{-\frac {b}{a}} \textit {\_a}^{\frac {b}{a}}\right ) \textit {\_a}^{\frac {-a -c}{a}}d \textit {\_a} \right )}{a}\]

___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

6.5.17.6 [1314] Problem 6

problem number 1314

Added April 11, 2019.

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

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

\[ a \cot ^n(\lambda x) w_x + b \cot ^m(\mu x) w_y = c \cot ^k(\nu x) w + p \cot ^s(\beta y) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*Cot[lambda*x]^n*D[w[x, y], x] + b*Cot[mu*x]^m*D[w[x, y], y] == c*Cot[nu*x]^k*w[x,y]+p*Cot[beta*y]^s; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 
\[\left \{\left \{w(x,y)\to \exp \left (\int _1^x\frac {c \cot ^{-n}(\lambda K[2]) \cot ^k(\nu K[2])}{a}dK[2]\right ) \left (\int _1^x\frac {\exp \left (-\int _1^{K[3]}\frac {c \cot ^{-n}(\lambda K[2]) \cot ^k(\nu K[2])}{a}dK[2]\right ) p \cot ^{-n}(\lambda K[3]) \cot ^s\left (\beta \left (y-\int _1^x\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]+\int _1^{K[3]}\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]\right )\right )}{a}dK[3]+c_1\left (y-\int _1^x\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]\right )\right )\right \}\right \}\]

Maple

restart; 
pde :=  a*cot(lambda*x)^n*diff(w(x,y),x)+ b*cot(mu*x)^m*diff(w(x,y),y) =c*cot(nu*x)^k*w(x,y)+p*cot(beta*y)^s; 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 
\[w \left (x , y\right ) = \left (\frac {p \int _{}^{x}{\cot \left (\frac {\beta \left (b \int \cot \left (\mu \textit {\_f} \right )^{m} \cot \left (\lambda \textit {\_f} \right )^{-n}d \textit {\_f} -b \int \cot \left (\mu x \right )^{m} \cot \left (\lambda x \right )^{-n}d x +y a \right )}{a}\right )}^{s} \cot \left (\lambda \textit {\_f} \right )^{-n} {\mathrm e}^{-\frac {c \int \cot \left (\nu \textit {\_f} \right )^{k} \cot \left (\lambda \textit {\_f} \right )^{-n}d \textit {\_f}}{a}}d \textit {\_f}}{a}+f_{1} \left (-\frac {b \int \cot \left (\mu x \right )^{m} \cot \left (\lambda x \right )^{-n}d x}{a}+y \right )\right ) {\mathrm e}^{\frac {c \int \cot \left (\nu x \right )^{k} \cot \left (\lambda x \right )^{-n}d x}{a}}\]

___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

6.5.17.7 [1315] Problem 7

problem number 1315

Added April 11, 2019.

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

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

\[ a \cot ^n(\lambda x) w_x + b \cot ^m(\mu x) w_y = c \cot ^k(\nu y) w + p \cot ^s(\beta x) \]

Mathematica

ClearAll["Global`*"]; 
pde =  a*Cot[lambda*x]^n*D[w[x, y], x] + b*Cot[mu*x]^m*D[w[x, y], y] == c*Cot[nu*y]^k*w[x,y]+p*Cot[beta*x]^s; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, w[x, y], {x, y}], 60*10]];
 
\[\left \{\left \{w(x,y)\to \exp \left (\int _1^x\frac {c \cot ^{-n}(\lambda K[2]) \cot ^k\left (\nu \left (y-\int _1^x\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]+\int _1^{K[2]}\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]\right )\right )}{a}dK[2]\right ) \left (\int _1^x\frac {\exp \left (-\int _1^{K[3]}\frac {c \cot ^{-n}(\lambda K[2]) \cot ^k\left (\nu \left (y-\int _1^x\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]+\int _1^{K[2]}\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]\right )\right )}{a}dK[2]\right ) p \cot ^s(\beta K[3]) \cot ^{-n}(\lambda K[3])}{a}dK[3]+c_1\left (y-\int _1^x\frac {b \cot ^{-n}(\lambda K[1]) \cot ^m(\mu K[1])}{a}dK[1]\right )\right )\right \}\right \}\]

Maple

restart; 
pde :=  a*cot(lambda*x)^n*diff(w(x,y),x)+ b*cot(mu*x)^m*diff(w(x,y),y) =c*cot(nu*y)^k*w(x,y)+p*cot(beta*x)^s; 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,w(x,y))),output='realtime'));
 
\[w \left (x , y\right ) = \left (\frac {p \int _{}^{x}\cot \left (\beta \textit {\_b} \right )^{s} \cot \left (\lambda \textit {\_b} \right )^{-n} {\mathrm e}^{-\frac {c \int {\cot \left (\frac {\nu \left (b \int \cot \left (\mu \textit {\_b} \right )^{m} \cot \left (\lambda \textit {\_b} \right )^{-n}d \textit {\_b} -b \int \cot \left (\mu x \right )^{m} \cot \left (\lambda x \right )^{-n}d x +y a \right )}{a}\right )}^{k} \cot \left (\lambda \textit {\_b} \right )^{-n}d \textit {\_b}}{a}}d \textit {\_b}}{a}+f_{1} \left (-\frac {b \int \cot \left (\mu x \right )^{m} \cot \left (\lambda x \right )^{-n}d x}{a}+y \right )\right ) {\mathrm e}^{\frac {c \int _{}^{x}{\cot \left (\frac {\nu \left (b \int \cot \left (\mu \textit {\_b} \right )^{m} \cot \left (\lambda \textit {\_b} \right )^{-n}d \textit {\_b} -b \int \cot \left (\mu x \right )^{m} \cot \left (\lambda x \right )^{-n}d x +y a \right )}{a}\right )}^{k} \cot \left (\lambda \textit {\_b} \right )^{-n}d \textit {\_b}}{a}}\]

___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________