7.3 problem 20

Internal problem ID [5696]

Book: ADVANCED ENGINEERING MATHEMATICS. ERWIN KREYSZIG, HERBERT KREYSZIG, EDWARD J. NORMINTON. 10th edition. John Wiley USA. 2011
Section: Chapter 6. Laplace Transforms. Problem set 6.3, page 224
Problem number: 20.
ODE order: 2.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime }+10 y^{\prime }+24 y=144 t^{2}} \] With initial conditions \begin {align*} \left [y \left (0\right ) = {\frac {19}{12}}, y^{\prime }\left (0\right ) = -5\right ] \end {align*}

Solution by Maple

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

dsolve([diff(y(t),t$2)+10*diff(y(t),t)+24*y(t)=144*t^2,y(0) = 19/12, D(y)(0) = -5],y(t), singsol=all)
 

\[ y \left (t \right ) = 6 t^{2}-5 t +\frac {19}{12} \]

Solution by Mathematica

Time used: 0.016 (sec). Leaf size: 17

DSolve[{y''[t]+10*y'[t]+24*y[t]==144*t^2,{y[0]==19/12,y'[0]==-5}},y[t],t,IncludeSingularSolutions -> True]
 

\[ y(t)\to 6 t^2-5 t+\frac {19}{12} \]