Internal
problem
ID
[8788]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
76
Date
solved
:
Monday, January 27, 2025 at 04:58:38 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.036 (sec). Leaf size: 58
dsolve([diff(x(t),t)=2*x(t)+y(t)-z(t),diff(y(t),t)=-x(t)+2*z(t),diff(z(t),t)=-x(t)-2*y(t)+4*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.004 (sec). Leaf size: 107
DSolve[{D[x[t],t]== 2*x[t]+y[t]-z[t],D[y[t],t] == -x[t]+2*z[t],D[z[t],t]==-x[t]-2*y[t]+4*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]