4.45.26 y(x)+3y(x)4y(x)=0

ODE
y(x)+3y(x)4y(x)=0 ODE Classification

[[_high_order, _missing_x]]

Book solution method
TO DO

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

{{y(x)c3ex+c4ex+c2sin(2x)+c1cos(2x)}}

Maple
cpu = 0.008 (sec), leaf count = 27

{y(x)=_C1ex+_C2ex+_C3sin(2x)+_C4cos(2x)} Mathematica raw input

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

y(x) = _C1*exp(-x)+_C2*exp(x)+_C3*sin(2*x)+_C4*cos(2*x)