84.19.3 problem 12.3

Internal problem ID [22211]
Book : Schaums outline series. Differential Equations By Richard Bronson. 1973. McGraw-Hill Inc. ISBN 0-07-008009-7
Section : Chapter 12. Second order linear homogeneous differential equations with constant coefficients. Solved problems. Page 64
Problem number : 12.3
Date solved : Thursday, October 02, 2025 at 08:36:16 PM
CAS classification : [[_2nd_order, _missing_x]]

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