Internal
problem
ID
[5123]
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
:
506
Date
solved
:
Tuesday, September 30, 2025 at 11:42:55 AM
CAS
classification
:
[[_homogeneous, `class C`], _exact, _rational, [_Abel, `2nd type`, `class A`]]
ode:=(a__2+b*x+c__2*y(x))*diff(y(x),x)+a__1+b__1*x+b*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=(a2+b*x+c2*y[x])*D[y[x],x]+(a1+b1*x+b*y[x])==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a2 = symbols("a2") b = symbols("b") c2 = symbols("c2") a1 = symbols("a1") b1 = symbols("b1") y = Function("y") ode = Eq(a1 + b*y(x) + b1*x + (a2 + b*x + c2*y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(-a1 - b*y(x) - b1*x)/(a2 + b*x + c2*y(x)) + Derivative(y(x), x