Internal
problem
ID
[16654]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
6.
Systems
of
Differential
Equations.
Exercises
6.1,
page
282
Problem
number
:
7
Date
solved
:
Tuesday, January 28, 2025 at 09:16:17 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.047 (sec). Leaf size: 34
dsolve([diff(x(t),t)=-3*x(t)+6*y(t),diff(y(t),t)=4*x(t)-y(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.004 (sec). Leaf size: 74
DSolve[{D[x[t],t]==-3*x[t]+6*y[t],D[y[t],t]==4*x[t]-y[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]