Internal
problem
ID
[2803]
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
:
5
Date
solved
:
Monday, January 27, 2025 at 06:14:01 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.037 (sec). Leaf size: 73
dsolve([diff(x(t),t)=-7*x(t)+1*y(t)-6*z(t),diff(y(t),t)=10*x(t)-4*y(t)+12*z(t),diff(z(t),t)=2*x(t)-1*y(t)+1*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.006 (sec). Leaf size: 166
DSolve[{D[x[t],t]==-7*x[t]+1*y[t]-6*z[t],D[y[t],t]==10*x[t]-4*y[t]+12*z[t],D[z[t],t]==2*x[t]-1*y[t]+1*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]