3.141 problem 1141

Internal problem ID [8721]

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]]

Solve \begin {gather*} \boxed {a x y^{\prime \prime }+\left (b x +3 a \right ) y^{\prime }+3 b y=0} \end {gather*}

Solution by Maple

Time used: 0.005 (sec). Leaf size: 49

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 \relax (x ) = c_{1} {\mathrm e}^{-\frac {b x}{a}}+c_{2} \left (\frac {\left (b x +a \right ) a}{x^{2}}+{\mathrm e}^{-\frac {b x}{a}} \expIntegral \left (1, -\frac {b x}{a}\right ) b^{2}\right ) \]

Solution by Mathematica

Time used: 0.105 (sec). Leaf size: 57

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

\begin{align*} y(x)\to \frac {e^{-\frac {b x}{a}} \left (2 a^2 c_1+b^2 c_2 \text {Ei}\left (\frac {b x}{a}\right )\right )-\frac {a c_2 (a+b x)}{x^2}}{2 a^2} \\ \end{align*}