3.117 problem 1117

Internal problem ID [8695]

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

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

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

Solution by Maple

Time used: 0.047 (sec). Leaf size: 91

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

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

Solution by Mathematica

Time used: 0.043 (sec). Leaf size: 77

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

\begin{align*} y(x)\to e^{b x} x^{a+b+1} \left (c_2 L_{\frac {2 a^2}{b-a}+a-1}^{a+b+1}((a-b) x)+c_1 \operatorname {HypergeometricU}\left (\frac {a (a+b)}{a-b}+1,a+b+2,(a-b) x\right )\right ) \\ \end{align*}