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