Internal
problem
ID
[605]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
5.
Linear
systems
of
differential
equations.
Section
5.3
(Matrices
and
linear
systems).
Problems
at
page
364
Problem
number
:
15
Date
solved
:
Monday, January 27, 2025 at 02:55:13 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.038 (sec). Leaf size: 63
dsolve([diff(x(t),t)=y(t)+z(t),diff(y(t),t)=z(t)+x(t),diff(z(t),t)=x(t)+y(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.006 (sec). Leaf size: 124
DSolve[{D[x[t],t]==y[t]+z[t],D[y[t],t]==z[t]+x[t],D[z[t],t]==x[t]+y[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]