4.28.3 \(x y''(x)+y(x)=0\)

ODE
\[ x y''(x)+y(x)=0 \] ODE Classification

[[_Emden, _Fowler]]

Book solution method
TO DO

Mathematica
cpu = 0.161857 (sec), leaf count = 39

\[\left \{\left \{y(x)\to \sqrt {x} \left (c_1 J_1\left (2 \sqrt {x}\right )+2 i c_2 Y_1\left (2 \sqrt {x}\right )\right )\right \}\right \}\]

Maple
cpu = 0.011 (sec), leaf count = 29

\[\left [y \left (x \right ) = \textit {\_C1} \sqrt {x}\, \BesselJ \left (1, 2 \sqrt {x}\right )+\textit {\_C2} \sqrt {x}\, \BesselY \left (1, 2 \sqrt {x}\right )\right ]\] Mathematica raw input

DSolve[y[x] + x*y''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> Sqrt[x]*(BesselJ[1, 2*Sqrt[x]]*C[1] + (2*I)*BesselY[1, 2*Sqrt[x]]*C[2]
)}}

Maple raw input

dsolve(x*diff(diff(y(x),x),x)+y(x) = 0, y(x))

Maple raw output

[y(x) = _C1*x^(1/2)*BesselJ(1,2*x^(1/2))+_C2*x^(1/2)*BesselY(1,2*x^(1/2))]