Internal
problem
ID
[13760]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.4.
Equations
Containing
Polynomial
Functions
of
y.
subsection
1.4.1-2
Abel
equations
of
the
first
kind.
Problem
number
:
13
Date
solved
:
Thursday, October 02, 2025 at 07:59:47 AM
CAS
classification
:
[_rational, _Abel]
ode:=x*diff(y(x),x) = a*x^4*y(x)^3+(b*x^2-1)*y(x)+c*x; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]==a*x^4*y[x]^3+(b*x^2-1)*y[x]+c*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(-a*x**4*y(x)**3 - c*x + x*Derivative(y(x), x) - (b*x**2 - 1)*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -a*x**3*y(x)**3 - b*x*y(x) - c + Derivative(y(x), x) + y(x)/x cannot be solved by the factorable group method