Internal
problem
ID
[13634]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.3.
Abel
Equations
of
the
Second
Kind.
subsection
1.3.4-2.
Problem
number
:
36
Date
solved
:
Friday, December 19, 2025 at 09:32:06 AM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class B`]]
ode:=(y(x)*x+a*x^n+b*x^2)*diff(y(x),x) = y(x)^2+c*x^n+b*x*y(x); dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli trying separable trying inverse linear trying homogeneous types: trying Chini differential order: 1; looking for linear symmetries trying exact trying Abel <- Abel successful
Maple step by step
ode=(x*y[x]+a*x^n+b*x^2)*D[y[x],x]==y[x]^2+c*x^n+b*x*y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") n = symbols("n") c = symbols("c") b = symbols("b") y = Function("y") ode = Eq(-b*x*y(x) - c*x**n + (a*x**n + b*x**2 + x*y(x))*Derivative(y(x), x) - y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out