Internal
problem
ID
[923]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Section
7.2,
Matrices
and
Linear
systems.
Page
417
Problem
number
:
problem
4
Date
solved
:
Wednesday, February 05, 2025 at 04:48:27 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.006 (sec). Leaf size: 75
dsolve([diff(x(t),t)=3*x(t)-2*y(t),diff(y(t),t)=2*x(t)+y(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.015 (sec). Leaf size: 96
DSolve[{D[x[t],t]==3*x[t]-2*y[t],D[y[t],t]==2*x[t]+y[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]