3.106 problem 1110

Internal problem ID [9440]

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

CAS Maple gives this as type [_Laguerre]

\[ \boxed {y^{\prime \prime } x -y^{\prime } x -a y=0} \]

Solution by Maple

Time used: 0.031 (sec). Leaf size: 23

dsolve(x*diff(diff(y(x),x),x)-x*diff(y(x),x)-a*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = x \left (\operatorname {KummerM}\left (a +1, 2, x\right ) c_{1} +\operatorname {KummerU}\left (a +1, 2, x\right ) c_{2} \right ) \]

Solution by Mathematica

Time used: 0.159 (sec). Leaf size: 36

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

\[ y(x)\to c_2 G_{1,2}^{2,0}\left (-x\left | \begin {array}{c} 1-a \\ 0,1 \\ \end {array} \right .\right )+c_1 x \operatorname {Hypergeometric1F1}(a+1,2,x) \]