3.9 problem 1009

Internal problem ID [8589]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 2, linear second order
Problem number: 1009.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _missing_x]]

Solve \begin {gather*} \boxed {y^{\prime \prime }+l y=0} \end {gather*}

Solution by Maple

Time used: 0.002 (sec). Leaf size: 21

dsolve(diff(diff(y(x),x),x)+l*y(x)=0,y(x), singsol=all)
 

\[ y \relax (x ) = c_{1} \sin \left (\sqrt {l}\, x \right )+c_{2} \cos \left (\sqrt {l}\, x \right ) \]

Solution by Mathematica

Time used: 0.002 (sec). Leaf size: 28

DSolve[l*y[x] + y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to c_1 \cos \left (\sqrt {l} x\right )+c_2 \sin \left (\sqrt {l} x\right ) \\ \end{align*}