7.24.5 problem 15

Internal problem ID [605]
Book : Elementary Differential Equations. By C. Henry Edwards, David E. Penney and David Calvis. 6th edition. 2008
Section : Chapter 5. Linear systems of differential equations. Section 5.3 (Matrices and linear systems). Problems at page 364
Problem number : 15
Date solved : Monday, January 27, 2025 at 02:55:13 AM
CAS classification : system_of_ODEs

\begin{align*} x^{\prime }&=y \left (t \right )+z \left (t \right )\\ y^{\prime }\left (t \right )&=x+z \left (t \right )\\ z^{\prime }\left (t \right )&=x+y \left (t \right ) \end{align*}

Solution by Maple

Time used: 0.038 (sec). Leaf size: 63

dsolve([diff(x(t),t)=y(t)+z(t),diff(y(t),t)=z(t)+x(t),diff(z(t),t)=x(t)+y(t)],singsol=all)
 
\begin{align*} x \left (t \right ) &= c_2 \,{\mathrm e}^{2 t}+c_3 \,{\mathrm e}^{-t} \\ y \left (t \right ) &= c_2 \,{\mathrm e}^{2 t}+c_3 \,{\mathrm e}^{-t}+{\mathrm e}^{-t} c_1 \\ z \left (t \right ) &= c_2 \,{\mathrm e}^{2 t}-2 c_3 \,{\mathrm e}^{-t}-{\mathrm e}^{-t} c_1 \\ \end{align*}

Solution by Mathematica

Time used: 0.006 (sec). Leaf size: 124

DSolve[{D[x[t],t]==y[t]+z[t],D[y[t],t]==z[t]+x[t],D[z[t],t]==x[t]+y[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]
 
\begin{align*} x(t)\to \frac {1}{3} e^{-t} \left (c_1 \left (e^{3 t}+2\right )+(c_2+c_3) \left (e^{3 t}-1\right )\right ) \\ y(t)\to \frac {1}{3} e^{-t} \left (c_1 \left (e^{3 t}-1\right )+c_2 \left (e^{3 t}+2\right )+c_3 \left (e^{3 t}-1\right )\right ) \\ z(t)\to \frac {1}{3} e^{-t} \left (c_1 \left (e^{3 t}-1\right )+c_2 \left (e^{3 t}-1\right )+c_3 \left (e^{3 t}+2\right )\right ) \\ \end{align*}