[[_high_order, _missing_x]]
Book solution method
TO DO
Mathematica ✓
cpu = 0.00870298 (sec), leaf count = 27
Maple ✓
cpu = 0.007 (sec), leaf count = 21
DSolve[y[x] - 2*y'[x] + 2*y''[x] - 2*y'''[x] + y''''[x] == 0,y[x],x]
Mathematica raw output
{{y[x] -> E^x*(C[3] + x*C[4]) + C[1]*Cos[x] + C[2]*Sin[x]}}
Maple raw input
dsolve(diff(diff(diff(diff(y(x),x),x),x),x)-2*diff(diff(diff(y(x),x),x),x)+2*diff(diff(y(x),x),x)-2*diff(y(x),x)+y(x) = 0, y(x),'implicit')
Maple raw output
y(x) = (_C2*x+_C1)*exp(x)+_C3*sin(x)+_C4*cos(x)