Internal
problem
ID
[10807]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
809
Date
solved
:
Sunday, March 30, 2025 at 07:01:10 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, _Abel]
ode:=diff(y(x),x) = (-125+300*x-240*x^2+64*x^3-80*y(x)^2+64*x*y(x)^2+64*y(x)^3)/(4*x-5)^3; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (-125 + 300*x - 240*x^2 + 64*x^3 - 80*y[x]^2 + 64*x*y[x]^2 + 64*y[x]^3)/(-5 + 4*x)^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (64*x**3 - 240*x**2 + 64*x*y(x)**2 + 300*x + 64*y(x)**3 - 80*y(x)**2 - 125)/(4*x - 5)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : argument of type Mul is not iterable