Internal
problem
ID
[17182]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Chapter
3
(Systems
of
differential
equations).
Section
21.
Finding
integrable
combinations.
Exercises
page
219
Problem
number
:
792
Date
solved
:
Monday, March 31, 2025 at 03:44:01 PM
CAS
classification
:
system_of_ODEs
ode:=[exp(t)*diff(x(t),t) = 1/y(t), exp(t)*diff(y(t),t) = 1/x(t)]; dsolve(ode);
ode={Exp[t]*D[x[t],t]==1/y[t],Exp[t]*D[y[t],t]==1/x[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(exp(t)*Derivative(x(t), t) - 1/y(t),0),Eq(exp(t)*Derivative(y(t), t) - 1/x(t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)
TypeError : NoneType object is not subscriptable