Internal
problem
ID
[2798]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
4.
Qualitative
theory
of
differential
equations.
Section
4.1
(Introduction).
Page
377
Problem
number
:
11
Date
solved
:
Monday, January 27, 2025 at 06:13:56 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.089 (sec). Leaf size: 16
dsolve([diff(x(t),t) = x(t)+y(t)+z(t)-2*exp(-t), diff(y(t),t) = 2*x(t)+y(t)-z(t)-2*exp(-t), diff(z(t),t) = -3*x(t)+2*y(t)+4*z(t)+3*exp(-t), x(0) = 1, y(0) = 0, z(0) = 0], singsol=all)
✓ Solution by Mathematica
Time used: 0.176 (sec). Leaf size: 18
DSolve[{D[x[t],t]==x[t]+y[t]+z[t]-2*Exp[-t],D[y[t],t]==2*x[t]+y[t]-z[t]-2*Exp[-t],D[z[t],t]==-3*x[t]+2*y[t]+4*z[t]+3*Exp[-t]},{x[0]==1,y[0]==0,z[0]==0},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]