Internal
problem
ID
[4557]
Book
:
Differential
equations
for
engineers
by
Wei-Chau
XIE,
Cambridge
Press
2010
Section
:
Chapter
7.
Systems
of
linear
differential
equations.
Problems
at
page
351
Problem
number
:
7.25
Date
solved
:
Monday, January 27, 2025 at 09:23:27 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.089 (sec). Leaf size: 65
dsolve([diff(x(t),t)-2*x(t)-y(t) = 2*exp(t), diff(y(t),t)-2*y(t)-4*z(t) = 4*exp(2*t), x(t)-diff(z(t),t)-z(t) = 0, x(0) = 9, y(0) = 3, z(0) = 1], singsol=all)
✓ Solution by Mathematica
Time used: 1.024 (sec). Leaf size: 74
DSolve[{D[x[t],t]-2*x[t]-y[t]==2*Exp[t],D[y[t],t]-2*y[t]-4*z[t]==4*Exp[2*t],x[t]-D[z[t],t]-z[t]==0},{x[0]==9,y[0]==3,z[0]== 1},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]