3.333 problem 1339

Internal problem ID [9667]

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

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

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

Solution by Maple

Time used: 0.157 (sec). Leaf size: 76

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

\[ y \left (x \right ) = \left (x^{-c} \operatorname {hypergeom}\left (\left [-d , 1-b -d \right ], \left [1-d -c \right ], -a x \right ) c_{2} +x^{d} \operatorname {hypergeom}\left (\left [c , 1-b +c \right ], \left [1+d +c \right ], -a x \right ) c_{1} \right ) \left (a x +1\right )^{-b +c -d} \]

Solution by Mathematica

Time used: 0.268 (sec). Leaf size: 66

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

\[ y(x)\to c_1 a^{-c} x^{-c} \operatorname {Hypergeometric2F1}(1-c,b-c,-c-d+1,-a x)+c_2 a^d x^d \operatorname {Hypergeometric2F1}(d+1,b+d,c+d+1,-a x) \]