Internal
problem
ID
[596]
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
:
10
Date
solved
:
Monday, January 27, 2025 at 02:55:08 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.016 (sec). Leaf size: 13
dsolve([diff(x(t),t)+2*diff(y(t),t) = 4*x(t)+5*y(t), 2*diff(x(t),t)-diff(y(t),t) = 3*x(t), x(0) = 1, y(0) = -1], singsol=all)
✓ Solution by Mathematica
Time used: 0.003 (sec). Leaf size: 16
DSolve[{D[x[t],t]+2*D[y[t],t]==4*x[t]+5*y[t],2*D[x[t],t]-D[y[t],t]==3*x[t]},{x[0]==1,y[0]==-1},{x[t],y[t]},t,IncludeSingularSolutions -> True]