8.10.2 problem 16

Internal problem ID [863]
Book : Differential equations and linear algebra, 3rd ed., Edwards and Penney
Section : Section 5.4, Mechanical Vibrations. Page 337
Problem number : 16
Date solved : Monday, January 27, 2025 at 03:10:30 AM
CAS classification : [[_2nd_order, _missing_x]]

\begin{align*} 3 x^{\prime \prime }+30 x^{\prime }+63 x&=0 \end{align*}

With initial conditions

\begin{align*} x \left (0\right )&=2\\ x^{\prime }\left (0\right )&=2 \end{align*}

Solution by Maple

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

dsolve([3*diff(x(t),t$2)+30*diff(x(t),t)+63*x(t)=0,x(0) = 2, D(x)(0) = 2],x(t), singsol=all)
 
\[ x \left (t \right ) = 4 \,{\mathrm e}^{-3 t}-2 \,{\mathrm e}^{-7 t} \]

Solution by Mathematica

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

DSolve[{3*D[x[t],{t,2}]+30*D[x[t],t]+63*x[t]==0,{x[0]==2,Derivative[1][x][0 ]==2}},x[t],t,IncludeSingularSolutions -> True]
 
\[ x(t)\to e^{-7 t} \left (4 e^{4 t}-2\right ) \]