4.45.1 4x3y(x)+xy(x)y(x)=0

ODE
4x3y(x)+xy(x)y(x)=0 ODE Classification

[[_3rd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.0133121 (sec), leaf count = 38

{{y(x)x(c1x32+c2x32+c3)}}

Maple
cpu = 0.007 (sec), leaf count = 30

{y(x)=_C1x+_C2x1+32+_C3x132} Mathematica raw input

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

Mathematica raw output

{{y[x] -> x*(C[1]/x^(Sqrt[3]/2) + x^(Sqrt[3]/2)*C[2] + C[3])}}

Maple raw input

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

Maple raw output

y(x) = _C1*x+_C2*x^(1+1/2*3^(1/2))+_C3*x^(1-1/2*3^(1/2))