Internal
problem
ID
[17887]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
88
(page
123)
Date
solved
:
Monday, March 31, 2025 at 04:48:09 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x) = y(x)*ln(y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==y[x]*Log[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)*log(y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)