4.45.43 4y(x)+y(x)+6y(x)4y(x)+y(x)=0

ODE
4y(x)+y(x)+6y(x)4y(x)+y(x)=0 ODE Classification

[[_high_order, _missing_x]]

Book solution method
TO DO

Mathematica
cpu = 0.00887705 (sec), leaf count = 26

{{y(x)ex(x(x(c4x+c3)+c2)+c1)}}

Maple
cpu = 0.006 (sec), leaf count = 22

{y(x)=ex(_C4x3+_C3x2+_C2x+_C1)} Mathematica raw input

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

y(x) = exp(x)*(_C4*x^3+_C3*x^2+_C2*x+_C1)