Internal
problem
ID
[9042]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
59
Date
solved
:
Friday, April 25, 2025 at 05:36:08 PM
CAS
classification
:
[_separable]
Time used: 0.425 (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)^2 = 1/y(x)^4/x^3; dsolve(ode,y(x), singsol=all);
Maple trace
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: 2 solutions were found. Trying to solve each res\ ulting ODE. *** Sublevel 2 *** Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli <- Bernoulli successful ------------------- * Tackling next ODE. *** Sublevel 2 *** Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli <- Bernoulli successful
Maple step by step
ode=(D[y[x],x])^2==1/(x^3*y[x]^4); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x)**2 - 1/(x**3*y(x)**4),0) ics = {} dsolve(ode,func=y(x),ics=ics)