Internal
problem
ID
[18968]
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
:
Monday, March 31, 2025 at 06:26:52 PM
CAS
classification
:
system_of_ODEs
ode:=[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)]; dsolve(ode);
ode={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]}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") y = Function("y") ode=[Eq(-t + 44*x(t) + 49*y(t) + 4*Derivative(x(t), t) + 9*Derivative(y(t), t),0),Eq(34*x(t) + 38*y(t) - exp(t) + 3*Derivative(x(t), t) + 7*Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)