4.45.12 y(x)=xcos(x)

ODE
y(x)=xcos(x) ODE Classification

[[_high_order, _quadrature]]

Book solution method
TO DO

Mathematica
cpu = 0.0351655 (sec), leaf count = 32

{{y(x)c4x3+c3x2+c2x+c14sin(x)+xcos(x)}}

Maple
cpu = 0.023 (sec), leaf count = 29

{y(x)=4sin(x)+xcos(x)+x3_C16+x2_C22+_C3x+_C4} Mathematica raw input

DSolve[y''''[x] == x*Cos[x],y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(diff(diff(diff(diff(y(x),x),x),x),x) = x*cos(x), y(x),'implicit')

Maple raw output

y(x) = -4*sin(x)+x*cos(x)+1/6*x^3*_C1+1/2*x^2*_C2+_C3*x+_C4