84.20.6 problem 12.14

Internal problem ID [22222]
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. Supplementary problems
Problem number : 12.14
Date solved : Thursday, October 02, 2025 at 08:36:24 PM
CAS classification : [[_2nd_order, _missing_x]]

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