Internal
problem
ID
[13136]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
9,
system
of
higher
order
odes
Problem
number
:
1914
Date
solved
:
Sunday, October 12, 2025 at 02:35:47 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = (a*y(t)+b)*x(t), diff(y(t),t) = (c*x(t)+d)*y(t)]; dsolve(ode);
ode={D[x[t],t]==(a*y[t]+b)*x[t],D[y[t],t]==(c*x[t]+d)*y[t]}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") b = symbols("b") c = symbols("c") d = symbols("d") x = Function("x") y = Function("y") ode=[Eq((-a*y(t) - b)*x(t) + Derivative(x(t), t),0),Eq((-c*x(t) - d)*y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)
Timed Out