Internal
problem
ID
[12017]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
720
Date
solved
:
Sunday, October 12, 2025 at 02:11:08 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x) = x^3*(3*x+3+(9*x^4-4*y(x)^3)^(1/2))/(1+x)/y(x)^2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (x^3*(3 + 3*x + Sqrt[9*x^4 - 4*y[x]^3]))/((1 + x)*y[x]^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**3*(3*x + sqrt(9*x**4 - 4*y(x)**3) + 3)/((x + 1)*y(x)**2) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out