1.697 problem 712

Internal problem ID [8187]

Book: Collection of Kovacic problems
Section: section 1
Problem number: 712.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [_Jacobi]

\[ \boxed {x \left (1-x \right ) y^{\prime \prime }+\frac {\left (-2 x +1\right ) y^{\prime }}{3}+\frac {20 y}{9}=0} \]

Solution by Maple

Time used: 0.015 (sec). Leaf size: 27

dsolve(x*(1-x)*diff(y(x),x$2)+1/3*(1-2*x)*diff(y(x),x)+20/9*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = c_{1} \left (6 x -5\right ) x^{\frac {2}{3}}+c_{2} \left (6 x -1\right ) \left (x -1\right )^{\frac {2}{3}} \]

Solution by Mathematica

Time used: 0.058 (sec). Leaf size: 51

DSolve[x*(1-x)*y''[x]+1/3*(1-2*x)*y'[x]+20/9*y[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to c_2 \sqrt [3]{-((x-1) x)} Q_1^{\frac {2}{3}}(2 x-1)+\frac {c_1 x^{2/3} (6 x-5)}{3 \operatorname {Gamma}\left (\frac {4}{3}\right )} \]