Internal
problem
ID
[17961]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
177
(page
265)
Date
solved
:
Friday, March 14, 2025 at 04:53:30 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(x),x) = y(x)^2/z(x), diff(z(x),x) = 1/2*y(x)]; dsolve(ode);
ode={D[y[x],x]==y[x]^2/z[x],D[z[x],x]==1/2*y[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(-y(x)**2/z(x) + Derivative(y(x), x),0),Eq(-y(x)/2 + Derivative(z(x), x),0)] ics = {} dsolve(ode,func=[y(x),z(x)],ics=ics)