Internal
problem
ID
[12415]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.3.
Abel
Equations
of
the
Second
Kind.
subsection
1.3.4-2.
Problem
number
:
1
Date
solved
:
Monday, March 31, 2025 at 05:32:47 AM
CAS
classification
:
[[_homogeneous, `class C`], _exact, _rational, [_Abel, `2nd type`, `class A`]]
ode:=(A*y(x)+B*x+a)*diff(y(x),x)+B*y(x)+k*x+b = 0; dsolve(ode,y(x), singsol=all);
ode=(A*y[x]+B*x+a)*D[y[x],x]+B*y[x]+k*x+b==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") B = symbols("B") a = symbols("a") b = symbols("b") k = symbols("k") y = Function("y") ode = Eq(B*y(x) + b + k*x + (A*y(x) + B*x + a)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-B*y(x) - b - k*x)/(A*y(x) + B*x + a) cannot be solved by the factorable group method