Internal
problem
ID
[4540]
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.8
Date
solved
:
Monday, January 27, 2025 at 09:23:14 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.239 (sec). Leaf size: 40
dsolve([diff(x(t),t)+x(t)+2*y(t)=8, 2*x(t)+diff(y(t),t)-2*y(t)=2*exp(-t)-8],singsol=all)
✓ Solution by Mathematica
Time used: 0.072 (sec). Leaf size: 82
DSolve[{D[x[t],t]+x[t]+2*y[t]==8,2*x[t]+D[y[t],t]-2*y[t]==2*Exp[-t]-8},{x[t],y[t]},t,IncludeSingularSolutions -> True]