Internal
problem
ID
[13642]
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
:
1
Date
solved
:
Tuesday, January 28, 2025 at 05:54:14 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.059 (sec). Leaf size: 64
dsolve([diff(x(t),t)=x(t)+y(t)-z(t),diff(y(t),t)=2*x(t)+3*y(t)-4*z(t),diff(z(t),t)=4*x(t)+y(t)-4*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.005 (sec). Leaf size: 198
DSolve[{D[x[t],t]==x[t]+y[t]-z[t],D[y[t],t]==2*x[t]+3*y[t]-4*z[t],D[z[t],t]==4*x[t]+y[t]-4*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]