Internal
problem
ID
[19186]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
21
(page
30)
Date
solved
:
Thursday, October 02, 2025 at 03:41:26 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=(x+y(x))*diff(y(x),x) = y(x)-x; dsolve(ode,y(x), singsol=all);
ode=(y[x]+x)*D[y[x],x]==y[x]-x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x + (x + y(x))*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)