23.10 problem 5(c)

Internal problem ID [5347]

Book: An introduction to Ordinary Differential Equations. Earl A. Coddington. Dover. NY 1961
Section: Chapter 6. Existence and uniqueness of solutions to systems and nth order equations. Page 238
Problem number: 5(c).
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {y^{\prime \prime }+\sin \relax (y)=0} \end {gather*} With initial conditions \begin {align*} [y \relax (0) = 0, y^{\prime }\relax (0) = 2] \end {align*}

Solution by Maple

Time used: 0.218 (sec). Leaf size: 23

dsolve([diff(y(x),x$2)+sin(y(x))=0,y(0) = 0, D(y)(0) = 2],y(x), singsol=all)
 

\[ y \relax (x ) = \RootOf \left (-\left (\int _{0}^{\textit {\_Z}}\frac {1}{\sqrt {2 \cos \left (\textit {\_a} \right )+2}}d \textit {\_a} \right )+x \right ) \]

Solution by Mathematica

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

DSolve[{y''[x]+Sin[y[x]]==0,{y[0]==0,y'[0]==2}},y[x],x,IncludeSingularSolutions -> True]
 

{}