Internal
problem
ID
[2808]
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
:
10
Date
solved
:
Monday, January 27, 2025 at 06:14:05 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.245 (sec). Leaf size: 110
dsolve([diff(x(t),t)=2*y(t)+z(t),diff(y(t),t)=-2*x(t)+h(t),diff(z(t),t)=2*h(t),diff(h(t),t)=-2*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.073 (sec). Leaf size: 96
DSolve[{D[x[t],t]==2*y[t]+z[t],D[y[t],t]==-2*x[t]+h[t],D[z[t],t]==2*h[t],D[h[t],t]==-2*z[t]},{x[t],y[t],z[t],h[t]},t,IncludeSingularSolutions -> True]