3.9 problem 1009

Internal problem ID [9343]

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]]

\[ \boxed {y^{\prime \prime }+l y=0} \]

Solution by Maple

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

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

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

Solution by Mathematica

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

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

\[ y(x)\to c_1 \cos \left (\sqrt {l} x\right )+c_2 \sin \left (\sqrt {l} x\right ) \]