Internal
problem
ID
[12284]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
989
Date
solved
:
Wednesday, October 01, 2025 at 01:27:56 AM
CAS
classification
:
[[_homogeneous, `class D`], _Riccati]
ode:=diff(y(x),x) = -F(x)*(-a*y(x)^2-b*x^2)+y(x)/x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == y[x]/x - F[x]*(-(b*x^2) - a*y[x]^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") F = Function("F") ode = Eq((-a*y(x)**2 - b*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*(a*y(x)**2 + b*x**2)*F(x) + y(x))/x cannot be solved by the factorable group method