Internal
problem
ID
[19039]
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.
problems
at
page
129
Problem
number
:
Ex.
4
Date
solved
:
Tuesday, January 28, 2025 at 12:46:21 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.038 (sec). Leaf size: 51
dsolve([4*diff(x(t),t)+9*diff(y(t),t)+44*x(t)+49*y(t)=t,3*diff(x(t),t)+7*diff(y(t),t)+34*x(t)+38*y(t)=exp(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.162 (sec). Leaf size: 104
DSolve[{4*D[x[t],t]+9*D[y[t],t]+44*x[t]+49*y[t]==t,3*D[x[t],t]+7*D[y[t],t]+34*x[t]+38*y[t]==Exp[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]