Internal
problem
ID
[11916]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
618
Date
solved
:
Sunday, October 12, 2025 at 02:02:45 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x) = (1+y(x))*((y(x)-ln(1+y(x))-ln(x))*x+1)/y(x)/x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == ((1 + y[x])*(1 + x*(-Log[x] - Log[1 + y[x]] + y[x])))/(x*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) - (x*(y(x) - log(x) - log(y(x) + 1)) + 1)*(y(x) + 1)/(x*y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)