29.19.11 problem 524

Internal problem ID [5120]
Book : Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section : Various 19
Problem number : 524
Date solved : Tuesday, March 04, 2025 at 07:59:23 PM
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