3.137 problem 1141

Internal problem ID [9471]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 2, linear second order
Problem number: 1141.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries]]

\[ \boxed {a x y^{\prime \prime }+\left (b x +3 a \right ) y^{\prime }+3 y b=0} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 55

dsolve(a*x*diff(diff(y(x),x),x)+(b*x+3*a)*diff(y(x),x)+3*b*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {{\mathrm e}^{-\frac {b x}{a}} \operatorname {expIntegral}_{1}\left (-\frac {b x}{a}\right ) c_{2} b^{2} x^{2}+c_{1} {\mathrm e}^{-\frac {b x}{a}} x^{2}+c_{2} a \left (b x +a \right )}{x^{2}} \]

Solution by Mathematica

Time used: 0.29 (sec). Leaf size: 63

DSolve[3*b*y[x] + (3*a + b*x)*y'[x] + a*x*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
                                                                                    
                                                                                    
 

\[ y(x)\to \frac {1}{2} \left (\frac {b^2 c_2 e^{-\frac {b x}{a}} \operatorname {ExpIntegralEi}\left (\frac {b x}{a}\right )}{a^2}-\frac {c_2 (a+b x)}{a x^2}+2 c_1 e^{-\frac {b x}{a}}\right ) \]