Internal
problem
ID
[14103]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
6.
Introduction
to
Systems
of
ODEs.
Problems
page
408
Problem
number
:
Problem
3(f)
Date
solved
:
Tuesday, January 28, 2025 at 06:14:29 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.056 (sec). Leaf size: 47
dsolve([diff(x(t),t)+x(t)-z(t)=0,diff(y(t),t)-y(t)+x(t)=0,diff(z(t),t)+x(t)+2*y(t)-3*z(t)=0],singsol=all)
✓ Solution by Mathematica
Time used: 0.045 (sec). Leaf size: 132
DSolve[{D[x[t],t]+x[t]-z[t]==0,D[y[t],t]-y[t]+x[t]==0,D[z[t],t]+x[t]+2*y[t]-3*z[t]==0},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]