Internal
problem
ID
[2701]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.14,
The
method
of
elimination
for
systems.
Excercises
page
258
Problem
number
:
4
Date
solved
:
Monday, January 27, 2025 at 06:12:00 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.050 (sec). Leaf size: 77
dsolve([diff(x(t),t)=x(t)+y(t)+exp(t),diff(y(t),t)=x(t)-y(t)-exp(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.383 (sec). Leaf size: 164
DSolve[{D[x[t],t]==x[t]+y[t]+Exp[t],D[y[t],t]==x[t]-y[t]-Exp[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]