4.26.17 \(y''(x)-7 y'(x)+12 y(x)=x\)

ODE
\[ y''(x)-7 y'(x)+12 y(x)=x \] ODE Classification

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.160259 (sec), leaf count = 30

\[\left \{\left \{y(x)\to \frac {x}{12}+c_1 e^{3 x}+c_2 e^{4 x}+\frac {7}{144}\right \}\right \}\]

Maple
cpu = 0.015 (sec), leaf count = 21

\[\left [y \left (x \right ) = {\mathrm e}^{4 x} \textit {\_C2} +{\mathrm e}^{3 x} \textit {\_C1} +\frac {x}{12}+\frac {7}{144}\right ]\] Mathematica raw input

DSolve[12*y[x] - 7*y'[x] + y''[x] == x,y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(diff(diff(y(x),x),x)-7*diff(y(x),x)+12*y(x) = x, y(x))

Maple raw output

[y(x) = exp(4*x)*_C2+exp(3*x)*_C1+1/12*x+7/144]