Internal
problem
ID
[22136]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
5.
Homogeneous
differential
equations.
Supplementary
problems
Problem
number
:
5.18
Date
solved
:
Friday, October 03, 2025 at 07:59:48 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational]
ode:=diff(y(x),x) = y(x)^2/(x*y(x)+(x*y(x)^2)^(1/3)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==y[x]^2/(x*y[x]+ (x*y[x]^2)^(1/3) ) ; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - y(x)**2/(x*y(x) + (x*y(x)**2)**(1/3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - y(x)**2/(x*y(x) + (x*y(x)**2)**(1/3)) cann