4.34 problem 31

Internal problem ID [6501]

Book: Own collection of miscellaneous problems
Section: section 4.0
Problem number: 31.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_Emden, _Fowler]]

\[ \boxed {y^{\prime \prime } x^{2}+y=0} \] With the expansion point for the power series method at \(x = 0\).

Solution by Maple

Time used: 0.016 (sec). Leaf size: 41

Order:=6; 
dsolve(x^2*diff(y(x), x$2) +y(x) = 0,y(x),type='series',x=0);
 

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

Solution by Mathematica

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

AsymptoticDSolveValue[x^2*y''[x] +y[x] == 0,y[x],{x,0,5}]
 

\[ y(x)\to c_1 x^{-(-1)^{2/3}}+c_2 x^{\sqrt [3]{-1}} \]