10.11 problem 11

Internal problem ID [5984]

Book: DIFFERENTIAL EQUATIONS with Boundary Value Problems. DENNIS G. ZILL, WARREN S. WRIGHT, MICHAEL R. CULLEN. Brooks/Cole. Boston, MA. 2013. 8th edition.
Section: CHAPTER 8 SYSTEMS OF LINEAR FIRST-ORDER DIFFERENTIAL EQUATIONS. EXERCISES 8.2. Page 346
Problem number: 11.
ODE order: 1.
ODE degree: 1.

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

Solution by Maple

Time used: 0.171 (sec). Leaf size: 67

dsolve([diff(x(t),t)=-x(t)-y(t),diff(y(t),t)=3/4*x(t)-3/2*y(t)+3*z(t),diff(z(t),t)=1/8*x(t)+1/4*y(t)-1/2*z(t)],[x(t), y(t), z(t)], singsol=all)
 

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

Solution by Mathematica

Time used: 0.016 (sec). Leaf size: 162

DSolve[{x'[t]==-x[t]-y[t],y'[t]==3/4*x[t]-3/2*y[t]+3*z[t],z'[t]==1/8x[t]+1/4*y[t]-1/2*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]
 

\begin{align*} x(t)\to \frac {1}{2} e^{-3 t/2} \left (c_1 \left (8 e^{t/2}-3 e^t-3\right )-4 \left (e^{t/2}-1\right ) \left (3 c_3 \left (e^{t/2}-1\right )+c_2\right )\right ) \\ y(t)\to \frac {1}{4} e^{-3 t/2} \left (3 c_1 \left (e^t-1\right )+4 \left (3 c_3 \left (e^t-1\right )+c_2\right )\right ) \\ z(t)\to \frac {1}{8} e^{-3 t/2} \left (5 (c_1+4 c_3) e^t-4 (2 c_1-c_2+6 c_3) e^{t/2}+3 c_1-4 c_2+12 c_3\right ) \\ \end{align*}