10.23 problem 23

Internal problem ID [14496]

Book: INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section: Chapter 4. Higher Order Equations. Exercises 4.2, page 147
Problem number: 23.
ODE order: 2.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime }+100 y=0} \] With initial conditions \begin {align*} [y \left (0\right ) = 1, y^{\prime }\left (0\right ) = 10] \end {align*}

Solution by Maple

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

dsolve([diff(y(t),t$2)+100*y(t)=0,y(0) = 1, D(y)(0) = 10],y(t), singsol=all)
 

\[ y \left (t \right ) = \sin \left (10 t \right )+\cos \left (10 t \right ) \]

Solution by Mathematica

Time used: 0.014 (sec). Leaf size: 14

DSolve[{y''[t]+100*y[t]==0,{y[0]==1,y'[0]==10}},y[t],t,IncludeSingularSolutions -> True]
 

\[ y(t)\to \sin (10 t)+\cos (10 t) \]