4.45.47 \(-12 y'''(x)+4 y''''(x)+11 y''(x)-3 y'(x)=0\)

ODE
\[ -12 y'''(x)+4 y''''(x)+11 y''(x)-3 y'(x)=0 \] ODE Classification

[[_high_order, _missing_x]]

Book solution method
TO DO

Mathematica
cpu = 0.0215341 (sec), leaf count = 38

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

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

\[ \left \{ y \left ( x \right ) ={\it \_C1}+{\it \_C2}\,{{\rm e}^{{\frac {x}{2}}}}+{\it \_C3}\,{{\rm e}^{x}}+{\it \_C4}\,{{\rm e}^{{\frac {3\,x}{2}}}} \right \} \] Mathematica raw input

DSolve[-3*y'[x] + 11*y''[x] - 12*y'''[x] + 4*y''''[x] == 0,y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(4*diff(diff(diff(diff(y(x),x),x),x),x)-12*diff(diff(diff(y(x),x),x),x)+11*diff(diff(y(x),x),x)-3*diff(y(x),x) = 0, y(x),'implicit')

Maple raw output

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