4.24.28 \(y''(x)=e^x x\)

ODE
\[ y''(x)=e^x x \] ODE Classification

[[_2nd_order, _quadrature]]

Book solution method
TO DO

Mathematica
cpu = 0.154633 (sec), leaf count = 19

\[\left \{\left \{y(x)\to e^x (x-2)+c_2 x+c_1\right \}\right \}\]

Maple
cpu = 0.039 (sec), leaf count = 15

\[[y \left (x \right ) = \left (x -2\right ) {\mathrm e}^{x}+\textit {\_C1} x +\textit {\_C2}]\] Mathematica raw input

DSolve[y''[x] == E^x*x,y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(diff(diff(y(x),x),x) = x*exp(x), y(x))

Maple raw output

[y(x) = (x-2)*exp(x)+_C1*x+_C2]