4.35.13 \(x^4 y''(x)+x^3 y'(x)+y(x)=0\)

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

[[_Emden, _Fowler]]

Book solution method
TO DO

Mathematica
cpu = 0.23498 (sec), leaf count = 31

\[\left \{\left \{y(x)\to c_2 J_0\left (\frac {1}{x}\right )+\frac {c_1 K_0\left (\frac {i}{x}\right )}{\sqrt {\pi }}\right \}\right \}\]

Maple
cpu = 0.095 (sec), leaf count = 19

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

DSolve[y[x] + x^3*y'[x] + x^4*y''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> (BesselK[0, I/x]*C[1])/Sqrt[Pi] + BesselJ[0, x^(-1)]*C[2]}}

Maple raw input

dsolve(x^4*diff(diff(y(x),x),x)+x^3*diff(y(x),x)+y(x) = 0, y(x))

Maple raw output

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