Internal
problem
ID
[13643]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
7,
Systems
of
linear
differential
equations.
Section
7.7.
Exercises
page
375
Problem
number
:
2
Date
solved
:
Tuesday, January 28, 2025 at 05:54:15 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.066 (sec). Leaf size: 73
dsolve([diff(x(t),t)=x(t)-y(t)-z(t),diff(y(t),t)=x(t)+3*y(t)+z(t),diff(z(t),t)=-3*x(t)-6*y(t)+6*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.051 (sec). Leaf size: 217
DSolve[{D[x[t],t]==x[t]-y[t]-z[t],D[y[t],t]==x[t]+3*y[t]+z[t],D[z[t],t]==3*x[t]-6*y[t]+6*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]