3.203 problem 1207

Internal problem ID [9537]

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

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

\[ \boxed {x^{2} y^{\prime \prime }+\left (x a +b \right ) y^{\prime } x +\left (\operatorname {a1} \,x^{2}+\operatorname {b1} x +\operatorname {c1} \right ) y=0} \]

Solution by Maple

Time used: 0.125 (sec). Leaf size: 110

dsolve(x^2*diff(diff(y(x),x),x)+(a*x+b)*diff(y(x),x)*x+(a1*x^2+b1*x+c1)*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = {\mathrm e}^{-\frac {a x}{2}} x^{-\frac {b}{2}} \left (c_{1} \operatorname {WhittakerM}\left (-\frac {a b -2 \operatorname {b1}}{2 \sqrt {a^{2}-4 \operatorname {a1}}}, \frac {\sqrt {b^{2}-2 b -4 \operatorname {c1} +1}}{2}, \sqrt {a^{2}-4 \operatorname {a1}}\, x \right )+c_{2} \operatorname {WhittakerW}\left (-\frac {a b -2 \operatorname {b1}}{2 \sqrt {a^{2}-4 \operatorname {a1}}}, \frac {\sqrt {b^{2}-2 b -4 \operatorname {c1} +1}}{2}, \sqrt {a^{2}-4 \operatorname {a1}}\, x \right )\right ) \]

Solution by Mathematica

Time used: 0.177 (sec). Leaf size: 223

DSolve[(c1 + b1*x + a1*x^2)*y[x] + x*(b + a*x)*y'[x] + x^2*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
                                                                                    
                                                                                    
 

\[ y(x)\to e^{-\frac {1}{2} x \left (\sqrt {a^2-4 \text {a1}}+a\right )} x^{\frac {1}{2} \left (\sqrt {b^2-2 b-4 \text {c1}+1}-b+1\right )} \left (c_1 \operatorname {HypergeometricU}\left (\frac {a b-2 \text {b1}+\sqrt {a^2-4 \text {a1}} \left (\sqrt {b^2-2 b-4 \text {c1}+1}+1\right )}{2 \sqrt {a^2-4 \text {a1}}},\sqrt {b^2-2 b-4 \text {c1}+1}+1,\sqrt {a^2-4 \text {a1}} x\right )+c_2 L_{\frac {-a b+2 \text {b1}-\sqrt {a^2-4 \text {a1}} \left (\sqrt {b^2-2 b-4 \text {c1}+1}+1\right )}{2 \sqrt {a^2-4 \text {a1}}}}^{\sqrt {b^2-2 b-4 \text {c1}+1}}\left (\sqrt {a^2-4 \text {a1}} x\right )\right ) \]