4.45.32 \(y''''(x)+\left (a^2+b^2\right ) y''(x)+a^2 b^2 y(x)=0\)

ODE
\[ y''''(x)+\left (a^2+b^2\right ) y''(x)+a^2 b^2 y(x)=0 \] ODE Classification

[[_high_order, _missing_x]]

Book solution method
TO DO

Mathematica
cpu = 0.147968 (sec), leaf count = 34

\[\{\{y(x)\to c_3 \cos (a x)+c_4 \sin (a x)+c_1 \cos (b x)+c_2 \sin (b x)\}\}\]

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

\[[y \left (x \right ) = \textit {\_C1} \sin \left (b x \right )+\textit {\_C2} \cos \left (b x \right )+\textit {\_C3} \sin \left (a x \right )+\textit {\_C4} \cos \left (a x \right )]\] Mathematica raw input

DSolve[a^2*b^2*y[x] + (a^2 + b^2)*y''[x] + y''''[x] == 0,y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(diff(diff(diff(diff(y(x),x),x),x),x)+(a^2+b^2)*diff(diff(y(x),x),x)+a^2*b^2*y(x) = 0, y(x))

Maple raw output

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