Internal
problem
ID
[8712]
Book
:
Selected
problems
from
homeworks
from
different
courses
Section
:
Math
2520,
summer
2021.
Differential
Equations
and
Linear
Algebra.
Normandale
college,
Bloomington,
Minnesota
Problem
number
:
Example
8.3.4
from
Handout
chapter
8.2
Date
solved
:
Monday, January 27, 2025 at 04:20:03 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.036 (sec). Leaf size: 44
dsolve([diff(x(t),t)=6*x(t)-7*y(t)+10,diff(y(t),t)=x(t)-2*y(t)-2*exp(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.089 (sec). Leaf size: 90
DSolve[{D[x[t],t]==6*x[t]-7*y[t]+10,D[y[t],t]==x[t]-2*y[t]-2*Exp[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]