11.13 problem 24

Internal problem ID [13110]

Book: DIFFERENTIAL EQUATIONS by Paul Blanchard, Robert L. Devaney, Glen R. Hall. 4th edition. Brooks/Cole. Boston, USA. 2012
Section: Chapter 3. Linear Systems. Exercises section 3.4 page 310
Problem number: 24.
ODE order: 1.
ODE degree: 1.

Solve \begin {align*} x^{\prime }\left (t \right )&=-\frac {9 x \left (t \right )}{10}-2 y\\ y^{\prime }&=x \left (t \right )+\frac {11 y}{10} \end {align*}

With initial conditions \[ [x \left (0\right ) = 1, y \left (0\right ) = 1] \]

Solution by Maple

Time used: 0.031 (sec). Leaf size: 35

dsolve([diff(x(t),t) = -9/10*x(t)-2*y(t), diff(y(t),t) = x(t)+11/10*y(t), x(0) = 1, y(0) = 1], singsol=all)
 

\begin{align*} x \left (t \right ) &= {\mathrm e}^{\frac {t}{10}} \left (-3 \sin \left (t \right )+\cos \left (t \right )\right ) \\ y \left (t \right ) &= -\frac {{\mathrm e}^{\frac {t}{10}} \left (-4 \sin \left (t \right )-2 \cos \left (t \right )\right )}{2} \\ \end{align*}

Solution by Mathematica

Time used: 0.01 (sec). Leaf size: 38

DSolve[{x'[t]==-9/10*x[t]-2*y[t],y'[t]==x[t]+11/10*y[t]},{x[0]==1,y[0]==1},{x[t],y[t]},t,IncludeSingularSolutions -> True]
 

\begin{align*} x(t)\to e^{t/10} (\cos (t)-3 \sin (t)) \\ y(t)\to e^{t/10} (2 \sin (t)+\cos (t)) \\ \end{align*}