Internal
problem
ID
[13143]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
9,
system
of
higher
order
odes
Problem
number
:
1923
Date
solved
:
Sunday, October 12, 2025 at 02:35:47 AM
CAS
classification
:
system_of_ODEs
ode:=[(t^2+1)*diff(x(t),t) = -t*x(t)+y(t), (t^2+1)*diff(y(t),t) = -x(t)-t*y(t)]; dsolve(ode);
ode={(t^2+1)*D[x[t],t]==-t*x[t]+y[t],(t^2+1)*D[y[t],t]==-x[t]-t*y[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*x(t) + (t**2 + 1)*Derivative(x(t), t) - y(t),0),Eq(t*y(t) + (t**2 + 1)*Derivative(y(t), t) + x(t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)