Internal
problem
ID
[12046]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
749
Date
solved
:
Sunday, October 12, 2025 at 02:13:59 AM
CAS
classification
:
[_rational]
ode:=diff(y(x),x) = (x-y(x))^2*(x+y(x))^2*x/y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (x*(x - y[x])^2*(x + y[x])^2)/y[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))**2*(x + y(x))**2/y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -x**5/y(x) + 2*x**3*y(x) - x*y(x)**3 + Derivative(y(x), x) cannot be solved by the factorable group method