27.3 problem 3(a)

Internal problem ID [5763]

Book: Differential Equations: Theory, Technique, and Practice by George Simmons, Steven Krantz. McGraw-Hill NY. 2007. 1st Edition.
Section: Chapter 10. Systems of First-Order Equations. Section 10.2 Linear Systems. Page 380
Problem number: 3(a).
ODE order: 1.
ODE degree: 1.

Solve \begin {align*} x^{\prime }\relax (t )&=x \relax (t )+2 y \relax (t )\\ y^{\prime }\relax (t )&=3 x \relax (t )+2 y \relax (t ) \end {align*}

Solution by Maple

Time used: 0.109 (sec). Leaf size: 36

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

\[ x \relax (t ) = -c_{1} {\mathrm e}^{-t}+\frac {2 c_{2} {\mathrm e}^{4 t}}{3} \] \[ y \relax (t ) = c_{1} {\mathrm e}^{-t}+c_{2} {\mathrm e}^{4 t} \]

Solution by Mathematica

Time used: 0.004 (sec). Leaf size: 68

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

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