Internal
problem
ID
[19327]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
178
(page
265)
Date
solved
:
Sunday, October 12, 2025 at 05:34:11 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(x),x) = 1-1/z(x), diff(z(x),x) = 1/(y(x)-x)]; dsolve(ode);
ode={D[y[x],x]==1-1/z[x],D[z[x],x]==1/(y[x]-x)}; ic={}; DSolve[{ode,ic},{y[x],z[x]},x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") z = Function("z") ode=[Eq(Derivative(y(x), x) - 1 + 1/z(x),0),Eq(Derivative(z(x), x) - 1/(-x + y(x)),0)] ics = {} dsolve(ode,func=[y(x),z(x)],ics=ics)
NotImplementedError :