Internal
problem
ID
[10602]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
604
Date
solved
:
Friday, March 14, 2025 at 02:14:28 AM
CAS
classification
:
[`x=_G(y,y')`]
ode:=diff(y(x),x) = 2*y(x)^3/(1+2*F((1+4*x*y(x)^2)/y(x)^2)*y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (2*y[x]^3)/(1 + 2*F[(1 + 4*x*y[x]^2)/y[x]^2]*y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") F = Function("F") ode = Eq(Derivative(y(x), x) - 2*y(x)**3/(2*F((4*x*y(x)**2 + 1)/y(x)**2)*y(x) + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - 2*y(x)**3/(2*F(4*x + y(x)**(-2))*y(x) + 1) cannot be solved by the factorable group method