3.36 problem 1037

Internal problem ID [9370]

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

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

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

Solution by Maple

Time used: 0.078 (sec). Leaf size: 64

dsolve(diff(diff(y(x),x),x)+a*diff(y(x),x)-(b^2*x^2+c)*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = {\mathrm e}^{-\frac {x \left (b x +a \right )}{2}} x \left (\operatorname {KummerU}\left (\frac {a^{2}+12 b +4 c}{16 b}, \frac {3}{2}, b \,x^{2}\right ) c_{2} +\operatorname {KummerM}\left (\frac {a^{2}+12 b +4 c}{16 b}, \frac {3}{2}, b \,x^{2}\right ) c_{1} \right ) \]

Solution by Mathematica

Time used: 0.048 (sec). Leaf size: 74

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

\[ y(x)\to e^{-\frac {1}{2} x (a+b x)} \left (c_1 \operatorname {HermiteH}\left (-\frac {a^2+4 (b+c)}{8 b},\sqrt {b} x\right )+c_2 \operatorname {Hypergeometric1F1}\left (\frac {a^2+4 (b+c)}{16 b},\frac {1}{2},b x^2\right )\right ) \]