Internal
problem
ID
[12169]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
874
Date
solved
:
Wednesday, October 01, 2025 at 01:05:38 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)]`], _Abel]
ode:=diff(y(x),x) = 1/512*(-256*x^2*a+512+512*y(x)^2+128*y(x)*a*x^4+8*a^2*x^8+512*y(x)^3+192*x^4*a*y(x)^2+24*y(x)*a^2*x^8+a^3*x^12)*x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (x*(512 - 256*a*x^2 + 8*a^2*x^8 + a^3*x^12 + 128*a*x^4*y[x] + 24*a^2*x^8*y[x] + 512*y[x]^2 + 192*a*x^4*y[x]^2 + 512*y[x]^3))/512; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-x*(a**3*x**12 + 24*a**2*x**8*y(x) + 8*a**2*x**8 + 192*a*x**4*y(x)**2 + 128*a*x**4*y(x) - 256*a*x**2 + 512*y(x)**3 + 512*y(x)**2 + 512)/512 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out