1.267 problem 270

Internal problem ID [7757]

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

CAS Maple gives this as type [_Jacobi]

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

Solution by Maple

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

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

\[ y \left (x \right ) = \frac {c_{1}}{\sqrt {x}}+\frac {c_{2} \ln \left (x -\frac {1}{2}+\sqrt {x \left (x -1\right )}\right )}{\sqrt {x}} \]

Solution by Mathematica

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

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

\[ y(x)\to \frac {c_1}{\sqrt {x}}-\frac {2 c_2 \sqrt {x-1} \log \left (\sqrt {x-1}-\sqrt {x}\right )}{\sqrt {-((x-1) x)}} \]