5.16 problem Problem 3(e)

Internal problem ID [12366]

Book: APPLIED DIFFERENTIAL EQUATIONS The Primary Course by Vladimir A. Dobrushkin. CRC Press 2015
Section: Chapter 6. Introduction to Systems of ODEs. Problems page 408
Problem number: Problem 3(e).
ODE order: 1.
ODE degree: 1.

Solve \begin {align*} x^{\prime }\left (t \right )&=3 x \left (t \right )-2 y\\ y^{\prime }&=x \left (t \right )-3 y \end {align*}

Solution by Maple

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

dsolve([diff(x(t),t)-3*x(t)+2*y(t)=0,diff(y(t),t)-x(t)+3*y(t)=0],singsol=all)
 

\begin{align*} x \left (t \right ) &= c_{1} {\mathrm e}^{\sqrt {7}\, t}+c_{2} {\mathrm e}^{-\sqrt {7}\, t} \\ y \left (t \right ) &= -\frac {c_{1} \sqrt {7}\, {\mathrm e}^{\sqrt {7}\, t}}{2}+\frac {c_{2} \sqrt {7}\, {\mathrm e}^{-\sqrt {7}\, t}}{2}+\frac {3 c_{1} {\mathrm e}^{\sqrt {7}\, t}}{2}+\frac {3 c_{2} {\mathrm e}^{-\sqrt {7}\, t}}{2} \\ \end{align*}

Solution by Mathematica

Time used: 0.013 (sec). Leaf size: 144

DSolve[{x'[t]-3*x[t]+2*y[t]==0,y'[t]-x[t]+3*y[t]==0},{x[t],y[t]},t,IncludeSingularSolutions -> True]
 

\begin{align*} x(t)\to \frac {1}{14} e^{-\sqrt {7} t} \left (c_1 \left (\left (7+3 \sqrt {7}\right ) e^{2 \sqrt {7} t}+7-3 \sqrt {7}\right )-2 \sqrt {7} c_2 \left (e^{2 \sqrt {7} t}-1\right )\right ) \\ y(t)\to \frac {1}{14} e^{-\sqrt {7} t} \left (\sqrt {7} c_1 \left (e^{2 \sqrt {7} t}-1\right )-c_2 \left (\left (3 \sqrt {7}-7\right ) e^{2 \sqrt {7} t}-7-3 \sqrt {7}\right )\right ) \\ \end{align*}