23.1.537 problem 527

Internal problem ID [5144]
Book : Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section : Part II. Chapter 1. THE DIFFERENTIAL EQUATION IS OF FIRST ORDER AND OF FIRST DEGREE, page 223
Problem number : 527
Date solved : Tuesday, September 30, 2025 at 11:44:21 AM
CAS classification : [_rational, [_Abel, `2nd type`, `class B`]]

\begin{align*} x \left (a +y\right ) y^{\prime }+b x +c y&=0 \end{align*}
Maple
ode:=x*(y(x)+a)*diff(y(x),x)+b*x+c*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=x*(a+y[x])*D[y[x],x]+b*x+c*y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
a = symbols("a") 
b = symbols("b") 
c = symbols("c") 
y = Function("y") 
ode = Eq(b*x + c*y(x) + x*(a + y(x))*Derivative(y(x), x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out