Internal
problem
ID
[21089]
Book
:
Ordinary
Differential
Equations.
By
Wolfgang
Walter.
Graduate
texts
in
Mathematics.
Springer.
NY.
QA372.W224
1998
Section
:
Chapter
1.
First
order
equations:
Some
integrable
cases.
Excercises
XIII
at
page
24
Problem
number
:
(h)
Date
solved
:
Thursday, October 02, 2025 at 07:07:13 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = 2*y(x)*(y(x)-1)/x/(2-y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]== (2*y[x]*(y[x]-1))/( x*(2-y[x]) ) ; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (2*y(x) - 2)*y(x)/(x*(2 - y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)