Internal
problem
ID
[19861]
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
33.
Problems
at
page
91
Problem
number
:
9
(e)
Date
solved
:
Thursday, October 02, 2025 at 04:51:29 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=diff(y(x),x) = 1+2*y(x)/(x-y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==1+2*y[x]/(x-y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - 1 - 2*y(x)/(x - y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)