84.22.2 problem 13.11

Internal problem ID [22237]
Book : Schaums outline series. Differential Equations By Richard Bronson. 1973. McGraw-Hill Inc. ISBN 0-07-008009-7
Section : Chapter 13. nth Order linear homogeneous differential equations with constant coefficients. Supplementary problems
Problem number : 13.11
Date solved : Thursday, October 02, 2025 at 08:36:31 PM
CAS classification : [[_3rd_order, _missing_x]]

\begin{align*} y^{\prime \prime \prime }-y^{\prime \prime }-y^{\prime }+y&=0 \end{align*}
Maple. Time used: 0.002 (sec). Leaf size: 19
ode:=diff(diff(diff(y(x),x),x),x)-diff(diff(y(x),x),x)-diff(y(x),x)+y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_1 \,{\mathrm e}^{-x}+{\mathrm e}^{x} \left (c_3 x +c_2 \right ) \]
Mathematica. Time used: 0.002 (sec). Leaf size: 25
ode=D[y[x],{x,3}]-D[y[x],{x,2}]-D[y[x],{x,1}]+y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to c_1 e^{-x}+e^x (c_3 x+c_2) \end{align*}
Sympy. Time used: 0.104 (sec). Leaf size: 15
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(y(x) - Derivative(y(x), x) - Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = C_{3} e^{- x} + \left (C_{1} + C_{2} x\right ) e^{x} \]