Internal
problem
ID
[1157]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.2.
Page
48
Problem
number
:
29
Date
solved
:
Tuesday, March 04, 2025 at 12:13:05 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x) = (b+a*y(x))/(d+c*y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (b+a*y[x])/(d+c*y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") d = symbols("d") y = Function("y") ode = Eq((-a*y(x) - b)/(c*y(x) + d) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)