Internal
problem
ID
[16823]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
12.
Miscellaneous
problems.
Exercises
page
93
Problem
number
:
302
Date
solved
:
Monday, March 31, 2025 at 03:23:12 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational]
ode:=x^2*y(x)^n*diff(y(x),x) = 2*x*diff(y(x),x)-y(x); dsolve(ode,y(x), singsol=all);
ode=x^2*y[x]^n*D[y[x],x]==2*x*D[y[x],x]-y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = symbols("n") y = Function("y") ode = Eq(x**2*y(x)**n*Derivative(y(x), x) - 2*x*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) + y(x)/(x*(x*y(x)**n - 2)) cannot be solved by the factorable group method