Internal
problem
ID
[17974]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
182
(page
297)
Date
solved
:
Monday, March 31, 2025 at 04:52:56 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(x),x) = z(x)^2/y(x), diff(z(x),x) = y(x)^2/z(x)]; dsolve(ode);
ode={D[y[x],x]==z[x]^2/y[x],D[z[x],x]==y[x]^2/z[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) - z(x)**2/y(x),0),Eq(-y(x)**2/z(x) + Derivative(z(x), x),0)] ics = {} dsolve(ode,func=[y(x),z(x)],ics=ics)