Internal
problem
ID
[21708]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
18.
Algebra
of
differential
operators.
Page
435
Problem
number
:
18-36
Date
solved
:
Thursday, October 02, 2025 at 08:00:11 PM
CAS
classification
:
system_of_ODEs
ode:=[2*diff(x(t),t)-3*x(t)-2*diff(y(t),t) = t, 2*diff(x(t),t)+3*x(t)+2*diff(y(t),t)+8*y(t) = 2]; dsolve(ode);
ode={2*D[x[t],t]-3*x[t]-2*D[y[t],t]==t, 2*D[x[t],t]+3*x[t]+2*D[y[t],t]+8*y[t]==2 }; 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 - 3*x(t) + Derivative(x(t), t) - 2*Derivative(y(t), t),0),Eq(3*x(t) + 8*y(t) + 2*Derivative(x(t), t) + 2*Derivative(y(t), t) - 2,0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)