Internal
problem
ID
[14599]
Book
:
Ordinary
Differential
Equations
by
Charles
E.
Roberts,
Jr.
CRC
Press.
2010
Section
:
Chapter
10.
Applications
of
Systems
of
Equations.
Exercises
10.2
page
432
Problem
number
:
7
Date
solved
:
Tuesday, January 28, 2025 at 06:44:06 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.048 (sec). Leaf size: 38
dsolve([diff(x(t),t)=-5*x(t)-y(t)+2,diff(y(t),t)=3*x(t)-1*y(t)-3],singsol=all)
✓ Solution by Mathematica
Time used: 0.036 (sec). Leaf size: 93
DSolve[{D[x[t],t]==-5*x[t]-y[t]+2,D[y[t],t]==3*x[t]-1*y[t]-3},{x[t],y[t]},t,IncludeSingularSolutions -> True]