Internal
problem
ID
[13722]
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
:
13
Date
solved
:
Thursday, October 02, 2025 at 04:27:42 AM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class B`]]
ode:=(2*x*y(x)+(-m+1)*A*y(x)-2*(1+m)/(3+m)*x)*diff(y(x),x) = 1/2*(-m+1)*y(x)^2+(m-1)/(3+m)*y(x)+x; dsolve(ode,y(x), singsol=all);
ode=(2*x*y[x]+(1-m)*A*y[x]- 2*(m+1)/(m+3)*x)*D[y[x],x]==(1-m)/2*y[x]^2+ (m-1)/(m+3)*y[x]+x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") A = symbols("A") m = symbols("m") y = Function("y") ode = Eq(-x - (1/2 - m/2)*y(x)**2 - (m - 1)*y(x)/(m + 3) + (A*(1 - m)*y(x) + 2*x*y(x) - x*(2*m + 2)/(m + 3))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out