Internal
problem
ID
[14118]
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(c)
Date
solved
:
Tuesday, January 28, 2025 at 06:14:45 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.142 (sec). Leaf size: 76
dsolve([diff(x(t),t)=-2*x(t)-2*y(t)+4*z(t),diff(y(t),t)=-2*x(t)+1*y(t)+2*z(t),diff(z(t),t)=-4*x(t)-2*y(t)+6*z(t)+exp(2*t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.014 (sec). Leaf size: 118
DSolve[{D[x[t],t]==-2*x[t]-2*y[t]+4*z[t],D[y[t],t]==-2*x[t]+y[t]+2*z[t],D[z[t],t]==-4*x[t]-2*y[t]+6*z[t]+Exp[2*t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]