Internal
problem
ID
[2807]
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
:
9
Date
solved
:
Monday, January 27, 2025 at 06:14:04 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.034 (sec). Leaf size: 67
dsolve([diff(x(t),t)=0*x(t)+2*y(t),diff(y(t),t)=-2*x(t),diff(z(t),t)=2*h(t),diff(h(t),t)=-2*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.003 (sec). Leaf size: 76
DSolve[{D[x[t],t]==0*x[t]+2*y[t],D[y[t],t]==-2*x[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]