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