Internal
problem
ID
[14305]
Book
:
An
elementary
treatise
on
differential
equations
by
Abraham
Cohen.
DC
heath
publishers.
1906
Section
:
Chapter
X,
System
of
simulataneous
equations.
Article
64.
Systems
of
linear
equations
with
constant
coefficients.
Page
150
Problem
number
:
Ex
1
Date
solved
:
Thursday, October 02, 2025 at 09:30:27 AM
CAS
classification
:
system_of_ODEs
ode:=[3*diff(x(t),t)+3*x(t)+2*y(t) = exp(t), 4*x(t)-3*diff(y(t),t)+3*y(t) = 3*t]; dsolve(ode);
ode={3*D[x[t],t]+3*x[t]+2*y[t]==Exp[t],4*x[t]-3*D[y[t],t]+3*y[t]==3*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(3*x(t) + 2*y(t) - exp(t) + 3*Derivative(x(t), t),0),Eq(-3*t + 4*x(t) + 3*y(t) - 3*Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)