Internal
problem
ID
[16728]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
7,
Total
differential
equations.
The
integrating
factor.
Exercises
page
61
Problem
number
:
189
Date
solved
:
Thursday, March 13, 2025 at 08:39:20 AM
CAS
classification
:
[_rational, [_1st_order, `_with_symmetry_[F(x),G(x)]`], [_Abel, `2nd type`, `class B`]]
ode:=1-x^2*y(x)+x^2*(y(x)-x)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=( 1-x^2*y[x])+x^2*(y[x]-x)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2*(-x + y(x))*Derivative(y(x), x) - x**2*y(x) + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)