Internal
problem
ID
[4547]
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.15
Date
solved
:
Monday, January 27, 2025 at 09:23:20 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.088 (sec). Leaf size: 71
dsolve([3*diff(x(t),t)+2*x(t)+diff(y(t),t)-6*y(t)=5*exp(t),4*diff(x(t),t)+2*x(t)+diff(y(t),t)-8*y(t)=5*exp(t)+2*t-3],singsol=all)
✓ Solution by Mathematica
Time used: 0.296 (sec). Leaf size: 54
DSolve[{3*D[x[t],t]+2*x[t]+D[y[t],t]-6*y[t]==5*Exp[t],4*D[x[t],t]+2*x[t]+D[y[t],t]-8*y[t]==5*Exp[t]+2*t-3},{x[t],y[t]},t,IncludeSingularSolutions -> True]