3.152 problem 1156

Internal problem ID [9486]

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

CAS Maple gives this as type [[_2nd_order, _linear, _nonhomogeneous]]

\[ \boxed {x^{2} y^{\prime \prime }+\frac {y}{\ln \left (x \right )}=x \,{\mathrm e}^{x} \left (2+\ln \left (x \right ) x \right )} \]

Solution by Maple

Time used: 0.094 (sec). Leaf size: 75

dsolve(x^2*diff(diff(y(x),x),x)+y(x)/ln(x)-x*exp(x)*(2+x*ln(x))=0,y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.127 (sec). Leaf size: 27

DSolve[-(E^x*x*(2 + x*Log[x])) + y[x]/Log[x] + x^2*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
                                                                                    
                                                                                    
 

\[ y(x)\to c_2 \operatorname {LogIntegral}(x) \log (x)+c_2 (-x)+\left (e^x+c_1\right ) \log (x) \]