Internal
problem
ID
[12287]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
992
Date
solved
:
Wednesday, October 01, 2025 at 01:28:08 AM
CAS
classification
:
[[_homogeneous, `class D`], _Riccati]
ode:=diff(y(x),x) = -F(x)*(-7*x*y(x)^2-x^3)+y(x)/x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == y[x]/x - F[x]*(-x^3 - 7*x*y[x]^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") F = Function("F") ode = Eq((-x**3 - 7*x*y(x)**2)*F(x) + Derivative(y(x), x) - y(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (x**2*(x**2 + 7*y(x)**2)*F(x) + y(x))/x cannot be solved by the factorable group method