Internal
problem
ID
[19833]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
29.
Problems
at
page
81
Problem
number
:
3
Date
solved
:
Thursday, October 02, 2025 at 04:46:20 PM
CAS
classification
:
[[_homogeneous, `class C`], _exact, _rational, [_Abel, `2nd type`, `class A`]]
ode:=2*a*x+b*y(x)+(2*c*y(x)+b*x+e)*diff(y(x),x) = g; dsolve(ode,y(x), singsol=all);
ode=(2*a*x+b*y[x])+(2*c*y[x]+b*x+e)*D[y[x],x]==g; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") e = symbols("e") g = symbols("g") y = Function("y") ode = Eq(2*a*x + b*y(x) - g + (b*x + 2*c*y(x) + e)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(-2*a*x - b*y(x) + g)/(b*x + 2*c*y(x) + e) + Derivative(y(x), x) cannot be solved by the factorable group method