Internal
problem
ID
[9038]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
54
Date
solved
:
Sunday, March 30, 2025 at 01:59:55 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational]
Time used: 0.758 (sec)
Solve
The ode has the form
Where
Solving for
To be able to solve as separable ode, we have to now assume that
Under the above assumption the differential equations become separable and can be written as
Therefore
Replacing
Integrating now gives the following solutions
Therefore
Summary of solutions found
ode:=diff(y(x),x)^3 = y(x)^2/x; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: *** Sublevel 2 *** Methods for first order ODEs: -> Solving 1st order ODE of high degree, 1st attempt trying 1st order WeierstrassP solution for high degree ODE trying 1st order WeierstrassPPrime solution for high degree ODE trying 1st order JacobiSN solution for high degree ODE trying 1st order ODE linearizable_by_differentiation trying differential order: 1; missing variables trying simple symmetries for implicit equations Successful isolation of dy/dx: 3 solutions were found. Trying to solve each \ resulting ODE. *** Sublevel 3 *** Methods for first order ODEs: --- Trying classification methods --- trying homogeneous types: trying homogeneous G trying an integrating factor from the invariance group <- integrating factor successful <- homogeneous successful ------------------- * Tackling next ODE. *** Sublevel 3 *** Methods for first order ODEs: --- Trying classification methods --- trying homogeneous types: trying homogeneous G trying an integrating factor from the invariance group <- integrating factor successful <- homogeneous successful ------------------- * Tackling next ODE. *** Sublevel 3 *** Methods for first order ODEs: --- Trying classification methods --- trying homogeneous types: trying homogeneous G trying an integrating factor from the invariance group <- integrating factor successful <- homogeneous successful
Maple step by step
ode=(D[y[x],x])^3==y[x]^2/x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x)**3 - y(x)**2/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)