4.42.40 \(y'''(x)=y(x)\)

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

[[_3rd_order, _missing_x]]

Book solution method
TO DO

Mathematica
cpu = 0.159464 (sec), leaf count = 52

\[\left \{\left \{y(x)\to e^{-x/2} \left (c_1 e^{3 x/2}+c_2 \cos \left (\frac {\sqrt {3} x}{2}\right )+c_3 \sin \left (\frac {\sqrt {3} x}{2}\right )\right )\right \}\right \}\]

Maple
cpu = 0.012 (sec), leaf count = 35

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

[y(x) = _C1*exp(x)+_C2*exp(-1/2*x)*sin(1/2*3^(1/2)*x)+_C3*exp(-1/2*x)*cos(1/2*3^
(1/2)*x)]