4.45.29 \(y''''(x)+a^2 y''(x)=0\)

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

[[_high_order, _missing_x]]

Book solution method
TO DO

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

\[\left \{\left \{y(x)\to -\frac {c_1 \cos (a x)}{a^2}-\frac {c_2 \sin (a x)}{a^2}+c_4 x+c_3\right \}\right \}\]

Maple
cpu = 0.028 (sec), leaf count = 21

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

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