4.45.30 y(x)+a4y(x)+2a2y(x)=0

ODE
y(x)+a4y(x)+2a2y(x)=0 ODE Classification

[[_high_order, _missing_x]]

Book solution method
TO DO

Mathematica
cpu = 0.00831964 (sec), leaf count = 30

{{y(x)(c4x+c3)sin(ax)+(c2x+c1)cos(ax)}}

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

{y(x)=(_C4x+_C2)cos(ax)+sin(ax)(_C3x+_C1)} Mathematica raw input

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

Mathematica raw output

{{y[x] -> (C[1] + x*C[2])*Cos[a*x] + (C[3] + x*C[4])*Sin[a*x]}}

Maple raw input

dsolve(diff(diff(diff(diff(y(x),x),x),x),x)+2*a^2*diff(diff(y(x),x),x)+a^4*y(x) = 0, y(x),'implicit')

Maple raw output

y(x) = (_C4*x+_C2)*cos(a*x)+sin(a*x)*(_C3*x+_C1)