4.45.28 \(y''''(x)-12 y''(x)+27 y(x)=0\)

ODE
\[ y''''(x)-12 y''(x)+27 y(x)=0 \] ODE Classification

[[_high_order, _missing_x]]

Book solution method
TO DO

Mathematica
cpu = 0.157641 (sec), leaf count = 47

\[\left \{\left \{y(x)\to c_1 e^{\sqrt {3} x}+c_2 e^{-\sqrt {3} x}+c_3 e^{-3 x}+c_4 e^{3 x}\right \}\right \}\]

Maple
cpu = 0.015 (sec), leaf count = 34

\[\left [y \left (x \right ) = \textit {\_C1} \,{\mathrm e}^{-3 x}+{\mathrm e}^{3 x} \textit {\_C2} +\textit {\_C3} \,{\mathrm e}^{\sqrt {3}\, x}+\textit {\_C4} \,{\mathrm e}^{-\sqrt {3}\, x}\right ]\] Mathematica raw input

DSolve[27*y[x] - 12*y''[x] + y''''[x] == 0,y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(diff(diff(diff(diff(y(x),x),x),x),x)-12*diff(diff(y(x),x),x)+27*y(x) = 0, y(x))

Maple raw output

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