28.26 problem 86

Internal problem ID [10920]

Book: Handbook of exact solutions for ordinary differential equations. By Polyanin and Zaitsev. Second edition
Section: Chapter 2, Second-Order Differential Equations. section 2.1.2-3 Equation of form \((a x + b)y''+f(x)y'+g(x)y=0\)
Problem number: 86.
ODE order: 2.
ODE degree: 1.

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

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

Solution by Maple

Time used: 0.0 (sec). Leaf size: 84

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

\[ y \left (x \right ) = c_{1} x^{-b +1}+c_{2} {\mathrm e}^{-\frac {a \,x^{3}}{6}} \left (\left (b +5\right ) \left (a \,x^{3}+b +2\right ) \operatorname {WhittakerM}\left (\frac {4}{3}+\frac {b}{6}, \frac {b}{6}+\frac {5}{6}, \frac {a \,x^{3}}{3}\right )+a^{2} \operatorname {WhittakerM}\left (\frac {1}{3}+\frac {b}{6}, \frac {b}{6}+\frac {5}{6}, \frac {a \,x^{3}}{3}\right ) x^{6}\right ) x^{-\frac {b}{2}-4} \]

Solution by Mathematica

Time used: 0.424 (sec). Leaf size: 60

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

\[ y(x)\to c_1 x^{1-b}-3^{\frac {b-4}{3}} c_2 \left (a x^3\right )^{\frac {1}{3}-\frac {b}{3}} \Gamma \left (\frac {b-1}{3},\frac {a x^3}{3}\right ) \]