Internal
problem
ID
[18964]
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
:
Thursday, March 13, 2025 at 01:13:30 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)+4*x(t)+3*y(t) = t, diff(y(t),t)+2*x(t)+5*y(t) = exp(t)]; dsolve(ode);
ode={D[x[t],t]+4*x[t]+3*y[t]==t,D[y[t],t]+2*x[t]+5*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 + 4*x(t) + 3*y(t) + Derivative(x(t), t),0),Eq(2*x(t) + 5*y(t) - exp(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)