Internal
problem
ID
[12097]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
800
Date
solved
:
Wednesday, October 01, 2025 at 12:32:16 AM
CAS
classification
:
[[_homogeneous, `class C`], _rational, _Abel]
ode:=diff(y(x),x) = (-b^3+6*b^2*x-12*b*x^2+8*x^3-4*b*y(x)^2+8*x*y(x)^2+8*y(x)^3)/(2*x-b)^3; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (-b^3 + 6*b^2*x - 12*b*x^2 + 8*x^3 - 4*b*y[x]^2 + 8*x*y[x]^2 + 8*y[x]^3)/(-b + 2*x)^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") b = symbols("b") y = Function("y") ode = Eq(Derivative(y(x), x) - (-b**3 + 6*b**2*x - 12*b*x**2 - 4*b*y(x)**2 + 8*x**3 + 8*x*y(x)**2 + 8*y(x)**3)/(-b + 2*x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : argument of type Mul is not iterable