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