7.1 problem 18

Internal problem ID [4941]

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: 18.
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {9 y^{\prime \prime }-6 y^{\prime }+y=0} \end {gather*} With initial conditions \begin {align*} [y \relax (0) = 3, y^{\prime }\relax (0) = 1] \end {align*}

Solution by Maple

Time used: 0.009 (sec). Leaf size: 10

dsolve([9*diff(y(t),t$2)-6*diff(y(t),t)+y(t)=0,y(0) = 3, D(y)(0) = 1],y(t), singsol=all)
 

\[ y \relax (t ) = 3 \,{\mathrm e}^{\frac {t}{3}} \]

Solution by Mathematica

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

DSolve[{9*y''[t]-6*y'[t]+y[t]==0,{y[0]==3,y'[0]==1}},y[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} y(t)\to 3 e^{t/3} \\ \end{align*}