Internal
problem
ID
[4536]
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.4
Date
solved
:
Tuesday, January 28, 2025 at 02:39:19 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.041 (sec). Leaf size: 37
dsolve([diff(x(t),t$2)+diff(x(t),t)+diff(y(t),t)-2*y(t)=0,diff(x(t),t)+x(t)-diff(y(t),t)=0],singsol=all)
✓ Solution by Mathematica
Time used: 0.005 (sec). Leaf size: 106
DSolve[{D[x[t],{t,2}]+D[x[t],t]+D[y[t],t]-2*y[t]==0,D[x[t],t]+x[t]-D[y[t],t]==0},{x[t],y[t]},t,IncludeSingularSolutions -> True]