Internal
problem
ID
[17855]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
61
(page
103)
Date
solved
:
Thursday, March 13, 2025 at 11:01:08 AM
CAS
classification
:
[_Bernoulli]
ode:=x*diff(y(x),x)+y(x)-x*y(x)^2*ln(x) = 0; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]+y[x]-x*y[x]^2*Log[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*y(x)**2*log(x) + x*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)