Internal
problem
ID
[10897]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
901
Date
solved
:
Sunday, March 30, 2025 at 07:20:52 PM
CAS
classification
:
[NONE]
ode:=diff(y(x),x) = (y(x)-a*ln(y(x))*x+x^2)/(-y(x)*ln(y(x))-y(x)*ln(x)-y(x)+a*x)*y(x)/x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (y[x]*(x^2 - a*x*Log[y[x]] + y[x]))/(x*(a*x - y[x] - Log[x]*y[x] - Log[y[x]]*y[x])); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(Derivative(y(x), x) - (-a*x*log(y(x)) + x**2 + y(x))*y(x)/(x*(a*x - y(x)*log(x) - y(x)*log(y(x)) - y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out