Internal
problem
ID
[14119]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
8.3
Systems
of
Linear
Differential
Equations
(Variation
of
Parameters).
Problems
page
514
Problem
number
:
Problem
4(d)
Date
solved
:
Tuesday, January 28, 2025 at 06:14:46 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.099 (sec). Leaf size: 89
dsolve([diff(x(t),t)=3*x(t)-2*y(t)+3*z(t),diff(y(t),t)=x(t)-y(t)+2*z(t)+2*exp(-t),diff(z(t),t)=-2*x(t)+2*y(t)-2*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.256 (sec). Leaf size: 174
DSolve[{D[x[t],t]==3*x[t]-2*y[t]+3*z[t],D[y[t],t]==x[t]-y[t]+2*z[t]+2*Exp[-t],D[z[t],t]==-2*x[t]+2*y[t]-2*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]