Internal
problem
ID
[11498]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
187
Date
solved
:
Tuesday, September 30, 2025 at 08:47:42 PM
CAS
classification
:
[[_homogeneous, `class G`], _Riccati]
ode:=x^n*diff(y(x),x)-a*y(x)^2-b*x^(2*n-2) = 0; dsolve(ode,y(x), singsol=all);
ode=x^n*D[y[x],x]- a*y[x]^2 - b*x^(2*n-2)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") n = symbols("n") y = Function("y") ode = Eq(-a*y(x)**2 - b*x**(2*n - 2) + x**n*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (a*y(x)**2 + b*x**(2*n - 2))/x**n cannot b