Internal
problem
ID
[10040]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
26
Date
solved
:
Wednesday, March 05, 2025 at 08:05:18 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)-(A*y(x)-a)*(B*y(x)-b) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - (A*y[x] - a)*(B*y[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") y = Function("y") ode = Eq(-(A*y(x) - a)*(B*y(x) - b) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)