Internal
problem
ID
[19043]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
XI.
Ordinary
differential
equations
with
more
than
two
variables.
End
of
chapter
problems
at
page
143
Problem
number
:
Ex.
4
Date
solved
:
Tuesday, January 28, 2025 at 12:46:24 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.036 (sec). Leaf size: 50
dsolve([diff(x(t),t)+4*x(t)+3*y(t)=t,diff(y(t),t)+2*x(t)+5*y(t)=exp(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.192 (sec). Leaf size: 109
DSolve[{D[x[t],t]+4*x[t]+3*y[t]==t,D[y[t],t]+2*x[t]+5*y[t]==Exp[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]