Internal
problem
ID
[592]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
5.
Linear
systems
of
differential
equations.
Section
5.2
(Applications).
Problems
at
page
345
Problem
number
:
6
Date
solved
:
Wednesday, February 05, 2025 at 03:45:56 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.023 (sec). Leaf size: 44
dsolve([diff(x(t),t) = x(t)+9*y(t), diff(y(t),t) = -2*x(t)-5*y(t), x(0) = 3, y(0) = 2], singsol=all)
✓ Solution by Mathematica
Time used: 0.006 (sec). Leaf size: 44
DSolve[{D[x[t],t]==x[t]+9*y[t],D[y[t],t]==-2*x[t]-5*y[t]},{x[0]==3,y[0]==2},{x[t],y[t]},t,IncludeSingularSolutions -> True]