Internal
problem
ID
[15841]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
1.
Introduction
to
Differential
Equations.
Exercises
1.1,
page
10
Problem
number
:
83
Date
solved
:
Tuesday, January 28, 2025 at 08:09:16 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.053 (sec). Leaf size: 33
dsolve([diff(x(t),t) = -5*x(t)+4*y(t), diff(y(t),t) = 2*x(t)+2*y(t), x(0) = 4, y(0) = 0], singsol=all)
✓ Solution by Mathematica
Time used: 0.004 (sec). Leaf size: 40
DSolve[{D[x[t],t]==-5*x[t]+4*y[t],D[y[t],t]==2*x[t]+2*y[t]},{x[0]==4,y[0]==0},{x[t],y[t]},t,IncludeSingularSolutions -> True]