Internal
problem
ID
[14101]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
6.
Introduction
to
Systems
of
ODEs.
Problems
page
408
Problem
number
:
Problem
3(d)
Date
solved
:
Tuesday, January 28, 2025 at 06:14:27 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.043 (sec). Leaf size: 82
dsolve([diff(x(t),t)+5*x(t)-2*y(t)=0,diff(y(t),t)+2*x(t)-y(t)=0],singsol=all)
✓ Solution by Mathematica
Time used: 0.008 (sec). Leaf size: 148
DSolve[{D[x[t],t]+5*x[t]-2*y[t]==0,D[y[t],t]+2*x[t]-y[t]==0},{x[t],y[t]},t,IncludeSingularSolutions -> True]