4.43.40 \(y'''(x)-6 y''(x)+9 y'(x)=0\)

ODE
\[ y'''(x)-6 y''(x)+9 y'(x)=0 \] ODE Classification

[[_3rd_order, _missing_x]]

Book solution method
TO DO

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

\[\left \{\left \{y(x)\to \frac {1}{9} e^{3 x} (c_2 (3 x-1)+3 c_1)+c_3\right \}\right \}\]

Maple
cpu = 0.013 (sec), leaf count = 19

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

DSolve[9*y'[x] - 6*y''[x] + y'''[x] == 0,y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(diff(diff(diff(y(x),x),x),x)-6*diff(diff(y(x),x),x)+9*diff(y(x),x) = 0, y(x))

Maple raw output

[y(x) = _C1+exp(3*x)*_C2+_C3*exp(3*x)*x]