11.2.1 problem 8

Internal problem ID [1472]
Book : Elementary differential equations and boundary value problems, 11th ed., Boyce, DiPrima, Meade
Section : Chapter 4.2, Higher order linear differential equations. Constant coefficients. page 180
Problem number : 8
Date solved : Monday, January 27, 2025 at 04:57:45 AM
CAS classification : [[_3rd_order, _missing_x]]

\begin{align*} y^{\prime \prime \prime }-y^{\prime \prime }-y^{\prime }+y&=0 \end{align*}

Solution by Maple

Time used: 0.003 (sec). Leaf size: 19

dsolve(diff(y(x),x$3)-diff(y(x),x$2)-diff(y(x),x)+y(x)=0,y(x), singsol=all)
 
\[ y = {\mathrm e}^{-x} c_1 +\left (x c_3 +c_2 \right ) {\mathrm e}^{x} \]

Solution by Mathematica

Time used: 0.003 (sec). Leaf size: 25

DSolve[D[y[x],{x,3}]-D[y[x],{x,2}]-D[y[x],x]+y[x]==0,y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to c_1 e^{-x}+e^x (c_3 x+c_2) \]