Internal
problem
ID
[925]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Section
7.2,
Matrices
and
Linear
systems.
Page
417
Problem
number
:
problem
7
Date
solved
:
Monday, January 27, 2025 at 03:22:33 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.007 (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.009 (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]