Internal
problem
ID
[12177]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
882
Date
solved
:
Wednesday, October 01, 2025 at 01:06:30 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)]`], _Abel]
ode:=diff(y(x),x) = -1/216*(-108*x^(3/2)-216-216*y(x)^2+72*x^3*y(x)-6*x^6-216*y(x)^3+108*x^3*y(x)^2-18*y(x)*x^6+x^9)*x^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == -1/216*(Sqrt[x]*(-216 - 108*x^(3/2) - 6*x^6 + x^9 + 72*x^3*y[x] - 18*x^6*y[x] - 216*y[x]^2 + 108*x^3*y[x]^2 - 216*y[x]^3)); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sqrt(x)*(-108*x**(3/2) + x**9 - 18*x**6*y(x) - 6*x**6 + 108*x**3*y(x)**2 + 72*x**3*y(x) - 216*y(x)**3 - 216*y(x)**2 - 216)/216 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out