Internal
problem
ID
[2806]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
4.
Qualitative
theory
of
differential
equations.
Section
4.2
(Stability
of
linear
systems).
Page
383
Problem
number
:
8
Date
solved
:
Monday, January 27, 2025 at 06:14:03 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.047 (sec). Leaf size: 53
dsolve([diff(x(t),t)=-2*x(t)+1*y(t)+1*z(t),diff(y(t),t)=-3*x(t)+2*y(t)+3*z(t),diff(z(t),t)=1*x(t)-1*y(t)-2*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.007 (sec). Leaf size: 106
DSolve[{D[x[t],t]==-2*x[t]+1*y[t]+1*z[t],D[y[t],t]==-3*x[t]+2*y[t]+3*z[t],D[z[t],t]==1*x[t]-1*y[t]-2*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]