Internal
problem
ID
[14562]
Book
:
Ordinary
Differential
Equations
by
Charles
E.
Roberts,
Jr.
CRC
Press.
2010
Section
:
Chapter
7.
Systems
of
First-Order
Differential
Equations.
Exercises
page
329
Problem
number
:
13
(a)
Date
solved
:
Tuesday, January 28, 2025 at 06:43:29 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.387 (sec). Leaf size: 118
dsolve([diff(y__1(x),x) = 3*y__1(x)-2*y__2(x), diff(y__2(x),x) = -y__1(x)+y__2(x), y__1(0) = 1, y__2(0) = -1], singsol=all)
✓ Solution by Mathematica
Time used: 0.009 (sec). Leaf size: 79
DSolve[{D[ y1[x],x]==3*y1[x]-2*y2[x],D[ y2[x],x]==-y1[x]+y2[x]},{y1[0]==1,y2[0]==-1},{y1[x],y2[x]},x,IncludeSingularSolutions -> True]