Internal
problem
ID
[2805]
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
:
7
Date
solved
:
Monday, January 27, 2025 at 06:14:02 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.039 (sec). Leaf size: 72
dsolve([diff(x(t),t)=0*x(t)+2*y(t)+1*z(t),diff(y(t),t)=-1*x(t)-3*y(t)-1*z(t),diff(z(t),t)=1*x(t)+1*y(t)-1*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.007 (sec). Leaf size: 87
DSolve[{D[x[t],t]==0*x[t]+2*y[t]+1*z[t],D[y[t],t]==-1*x[t]-3*y[t]-1*z[t],D[z[t],t]==1*x[t]+1*y[t]-1*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]