Internal
problem
ID
[11558]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
249
Date
solved
:
Tuesday, September 30, 2025 at 09:00:56 PM
CAS
classification
:
[_rational, [_1st_order, `_with_symmetry_[F(x)*G(y),0]`], [_Abel, `2nd type`, `class C`]]
ode:=(a*x*y(x)+b*x^n)*diff(y(x),x)+alpha*y(x)^3+beta*y(x)^2 = 0; dsolve(ode,y(x), singsol=all);
ode=(a*x*y[x]+b*x^n)*D[y[x],x]+\[Alpha]*y[x]^3+\[Beta]*y[x]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") Alpha = symbols("Alpha") BETA = symbols("BETA") a = symbols("a") b = symbols("b") n = symbols("n") y = Function("y") ode = Eq(Alpha*y(x)**3 + BETA*y(x)**2 + (a*x*y(x) + b*x**n)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(-Alpha*y(x) - BETA)*y(x)**2/(a*x*y(x) + b*x**n) + Derivative(y(x), x) cannot be solved by the factorable group method