Internal
problem
ID
[12219]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
924
Date
solved
:
Wednesday, October 01, 2025 at 01:14:30 AM
CAS
classification
:
[NONE]
ode:=diff(y(x),x) = -(-1/2*ln(y(x))^2/x-_F1(x))/ln(y(x))*y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == ((F1[x] + Log[y[x]]^2/(2*x))*y[x])/Log[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") F1 = Function("F1") ode = Eq((-F1(x) - log(y(x))**2/(2*x))*y(x)/log(y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)