Internal
problem
ID
[9035]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
52
Date
solved
:
Friday, April 25, 2025 at 05:34:57 PM
CAS
classification
:
[_separable]
Time used: 1.124 (sec)
Solve
Let
Isolating
Now we generate an ode in
Which is now solved for
In canonical form, the ODE is
An ode of the form
In this case, it can be seen that both
Applying the
transformation
Or
Or
Or
Which is now solved as separable in
The ode
is separable as it can be written as
Where
Integrating gives
We now need to find the singular solutions, these are found by finding for what values
for
Now we go over each such singular solution and check if it verifies the ode itself and any initial conditions given. If it does not then the singular solution will not be used.
Therefore the solutions found are
Converting
Converting
Solving for
Now that we have found solution
Eliminating
Which can be written as
Solving for
Summary of solutions found
ode:=diff(y(x),x)^2 = y(x)^2/x; 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 <- symmetries for implicit equations successful
Maple step by step
ode=(D[y[x],x])^2==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)**2 - y(x)**2/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)