Internal
problem
ID
[9117]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
46
Date
solved
:
Sunday, March 30, 2025 at 02:07:39 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
Time used: 2.856 (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
Solving for
Solving ODE (1)
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
Which is now solved as separable in
The ode
is separable as it can be written as
Where
Integrating gives
Taking the exponential of both sides the solution becomes
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 ODE (2)
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
Which is now solved as separable in
The ode
is separable as it can be written as
Where
Integrating gives
Taking the exponential of both sides the solution becomes
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
Converting
For solution (1) found earlier, since
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
Integrating gives
Singular solutions are found by solving
for
Solving Eq. (2)
Integrating gives
For solution (2) found earlier, since
Since the ode has the form
For solution (3) found earlier, since
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
Integrating gives
Solving Eq. (2)
Integrating gives
Singular solutions are found by solving
for
For solution (4) found earlier, since
Integrating gives
Singular solutions are found by solving
for
For solution (5) 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)^2+diff(y(x),x)^3 = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: *** Sublevel 2 *** Methods for second order ODEs: Successful isolation of d^2y/dx^2: 2 solutions were found. Trying to solve e\ ach resulting ODE. *** Sublevel 3 *** 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 -> Computing symmetries using: way = 3 Try integration with the canonical coordinates of the symmetry [0, y] -> Calling odsolve with the ODE, diff(_b(_a),_a) = -(-_b(_a))^(3/2)-_b(_a )^2, _b(_a), explicit, HINT = [[1, 0]] *** Sublevel 4 *** symmetry methods on request 1st order, trying reduction of order with given symmetries: [1, 0] 1st order, trying the canonical coordinates of the invariance group <- 1st order, canonical coordinates successful <- differential order: 2; canonical coordinates successful <- differential order 2; missing variables successful ------------------- * Tackling next ODE. *** Sublevel 3 *** 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 -> Computing symmetries using: way = 3 Try integration with the canonical coordinates of the symmetry [0, y] -> Calling odsolve with the ODE, diff(_b(_a),_a) = (-_b(_a))^(3/2)-_b(_a) ^2, _b(_a), explicit, HINT = [[1, 0]] *** Sublevel 4 *** symmetry methods on request 1st order, trying reduction of order with given symmetries: [1, 0] 1st order, trying the canonical coordinates of the invariance group <- 1st order, canonical coordinates successful <- differential order: 2; canonical coordinates successful <- differential order 2; missing variables successful -> Calling odsolve with the ODE, diff(y(x),x) = 0, y(x), singsol = none *** Sublevel 2 *** Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear <- 1st order linear successful
ode=y[x]*D[y[x],{x,2}]^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))**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))**2)**(1/3)/2 - sqrt(3)*I*(-y(x)*Derivative(y(x), (x, 2))**2)**(1/3)/2 + Derivative(y(x), x) cannot be solved by the factorable group method