Internal
problem
ID
[10874]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
878
Date
solved
:
Friday, March 14, 2025 at 02:46:11 AM
CAS
classification
:
[_rational]
ode:=diff(y(x),x) = (1+y(x)^4-8*a*x*y(x)^2+16*a^2*x^2+y(x)^6-12*y(x)^4*a*x+48*y(x)^2*a^2*x^2-64*a^3*x^3)/y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (1 + 16*a^2*x^2 - 64*a^3*x^3 - 8*a*x*y[x]^2 + 48*a^2*x^2*y[x]^2 + y[x]^4 - 12*a*x*y[x]^4 + y[x]^6)/y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq((64*a**3*x**3 - 48*a**2*x**2*y(x)**2 - 16*a**2*x**2 + 12*a*x*y(x)**4 + 8*a*x*y(x)**2 - y(x)**6 - y(x)**4 - 1)/y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out