74.10.3 problem 3

Internal problem ID [16137]
Book : INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section : Chapter 4. Higher Order Equations. Exercises 4.2, page 147
Problem number : 3
Date solved : Monday, March 31, 2025 at 02:44:40 PM
CAS classification : [[_2nd_order, _missing_x]]

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

Maple. Time used: 0.002 (sec). Leaf size: 12
ode:=diff(diff(y(t),t),t)+diff(y(t),t) = 0; 
dsolve(ode,y(t), singsol=all);
 
\[ y = c_1 +c_2 \,{\mathrm e}^{-t} \]
Mathematica. Time used: 0.01 (sec). Leaf size: 17
ode=D[y[t],{t,2}]+D[y[t],t]==0; 
ic={}; 
DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
 
\[ y(t)\to c_2-c_1 e^{-t} \]
Sympy. Time used: 0.108 (sec). Leaf size: 8
from sympy import * 
t = symbols("t") 
y = Function("y") 
ode = Eq(Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) 
ics = {} 
dsolve(ode,func=y(t),ics=ics)
 
\[ y{\left (t \right )} = C_{1} + C_{2} e^{- t} \]