3.52 problem 1052

Internal problem ID [8632]

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

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

Solve \begin {gather*} \boxed {y^{\prime \prime }+a x y^{\prime }+y b=0} \end {gather*}

Solution by Maple

Time used: 0.022 (sec). Leaf size: 65

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

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

Solution by Mathematica

Time used: 0.01 (sec). Leaf size: 67

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

\begin{align*} y(x)\to e^{-\frac {a x^2}{2}} \left (c_1 \text {HermiteH}\left (\frac {b}{a}-1,\frac {\sqrt {a} x}{\sqrt {2}}\right )+c_2 \, _1F_1\left (\frac {a-b}{2 a};\frac {1}{2};\frac {a x^2}{2}\right )\right ) \\ \end{align*}