Internal
problem
ID
[17984]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
192
(page
298)
Date
solved
:
Monday, March 31, 2025 at 04:53:09 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)+5*x(t)+y(t) = exp(t), diff(y(t),t)+3*y(t)-x(t) = exp(2*t)]; dsolve(ode);
ode={D[x[t],t]+5*x[t]+y[t]==Exp[t],D[y[t],t]+3*y[t]-x[t]==Exp[2*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(5*x(t) + y(t) - exp(t) + Derivative(x(t), t),0),Eq(-x(t) + 3*y(t) - exp(2*t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)