Internal
problem
ID
[11866]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
565
Date
solved
:
Friday, October 03, 2025 at 02:48:57 AM
CAS
classification
:
[_separable]
ode:=y(x)*ln(diff(y(x),x))+diff(y(x),x)-ln(y(x))*y(x)-x*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=-(x*y[x]) - Log[y[x]]*y[x] + Log[D[y[x],x]]*y[x] + D[y[x],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) - y(x)*log(y(x)) + y(x)*log(Derivative(y(x), x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)