Internal
problem
ID
[17239]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Chapter
3
(Systems
of
differential
equations).
Section
20.
The
method
of
elimination.
Exercises
page
212
Problem
number
:
778
Date
solved
:
Tuesday, January 28, 2025 at 09:58:20 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.038 (sec). Leaf size: 31
dsolve([diff(x(t),t)+3*x(t)+4*y(t) = 0, diff(y(t),t)+2*x(t)+5*y(t) = 0, x(0) = 1, y(0) = 4], singsol=all)
✓ Solution by Mathematica
Time used: 0.004 (sec). Leaf size: 36
DSolve[{D[x[t],t]+3*x[t]+4*y[t]==0,D[y[t],t]+2*x[t]+5*y[t]==0},{x[0]==1,y[0]==4},{x[t],y[t]},t,IncludeSingularSolutions -> True]