Internal
problem
ID
[9121]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
50
Date
solved
:
Sunday, March 30, 2025 at 02:08:05 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_y_y1]]
Time used: 0.475 (sec)
Solve
This is missing independent variable second order ode. Solved by reduction of order by using substitution which makes the dependent variable
Then
Hence the ode becomes
Which is now solved as first order ode for
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
For solution (1) found earlier, since
Integrating gives
For solution (2) found earlier, since
Since the ode has the form
Will add steps showing solving for IC soon.
Solving for
Summary of solutions found
ode:=y(x)*diff(diff(y(x),x),x)+diff(y(x),x)^3 = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying 2nd order Liouville trying 2nd order WeierstrassP trying 2nd order JacobiSN differential order: 2; trying a linearization to 3rd order trying 2nd order ODE linearizable_by_differentiation trying 2nd order, 2 integrating factors of the form mu(x,y) trying differential order: 2; missing variables -> Calling odsolve with the ODE, diff(_b(_a),_a)*_b(_a)+_b(_a)^3/_a = 0, _b(_a) *** Sublevel 2 *** Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli <- Bernoulli successful <- differential order: 2; canonical coordinates successful <- differential order 2; missing variables successful
Maple step by step
ode=y[x]*D[y[x],{x,2}]+D[y[x],x]^3==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)*Derivative(y(x), (x, 2)) + Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE (-y(x)*Derivative(y(x), (x, 2)))**(1/3)/2 - sqrt(3)*I*(-y(x)*Derivative(y(x), (x, 2)))**(1/3)/2 + Derivative(y(x), x) cannot be solved by the factorable group method