Internal
problem
ID
[11892]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
594
Date
solved
:
Sunday, October 12, 2025 at 02:02:23 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`]]
ode:=diff(y(x),x) = F(-(-y(x)^2+b)/x^2)*x/y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (x*F[(-b + y[x]^2)/x^2])/y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") b = symbols("b") y = Function("y") F = Function("F") ode = Eq(-x*F((-b + y(x)**2)/x**2)/y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -x*F((-b + y(x)**2)/x**2)/y(x) + Derivative(y(x), x) cannot be solved by the lie group method