60.3.6 problem 1006

Internal problem ID [11016]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 2, linear second order
Problem number : 1006
Date solved : Monday, January 27, 2025 at 10:41:47 PM
CAS classification : [[_2nd_order, _missing_x]]

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

Solution by Maple

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

dsolve(diff(diff(y(x),x),x)-y(x)=0,y(x), singsol=all)
 
\[ y = c_{1} {\mathrm e}^{-x}+{\mathrm e}^{x} c_{2} \]

Solution by Mathematica

Time used: 0.011 (sec). Leaf size: 20

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