Internal
problem
ID
[2916]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
8,
page
34
Problem
number
:
3
Date
solved
:
Sunday, March 30, 2025 at 12:55:13 AM
CAS
classification
:
[[_homogeneous, `class C`], _exact, _rational, [_Abel, `2nd type`, `class A`]]
ode:=a__1*x+b__1*y(x)+c__1+(b__1*x+b__2*y(x)+c__2)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(a1*x+b1*y[x]+c1)+(b1*x+b2*y[x]+c2)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a__1 = symbols("a__1") b__1 = symbols("b__1") b__2 = symbols("b__2") c__1 = symbols("c__1") c__2 = symbols("c__2") y = Function("y") ode = Eq(a__1*x + b__1*y(x) + c__1 + (b__1*x + b__2*y(x) + c__2)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(-a__1*x - b__1*y(x) - c__1)/(b__1*x + b__2*y(x) + c__2) + Derivative(y(x), x) cannot be solved by the factorable group method