Internal
problem
ID
[4173]
Book
:
Theory
and
solutions
of
Ordinary
Differential
equations,
Donald
Greenspan,
1960
Section
:
Chapter
6.
Linear
systems.
Exercises
at
page
110
Problem
number
:
9
Date
solved
:
Monday, January 27, 2025 at 08:41:17 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.031 (sec). Leaf size: 25
dsolve([2*diff(y__1(x),x) = y__1(x)+y__2(x), 2*diff(y__2(x),x) = 5*y__2(x)-3*y__1(x), y__1(0) = 3, y__2(0) = 7], singsol=all)
✓ Solution by Mathematica
Time used: 0.004 (sec). Leaf size: 30
DSolve[{2*D[y1[x],x]==y1[x]+y2[x],2*D[y2[x],x]==5*y2[x]-3*y1[x]},{y1[0]==3,y2[0]==7},{y1[x],y2[x]},x,IncludeSingularSolutions -> True]