Internal
problem
ID
[8884]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
3.0
Problem
number
:
26
Date
solved
:
Sunday, March 30, 2025 at 01:52:16 PM
CAS
classification
:
[[_2nd_order, _missing_x], _Liouville, [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_xy]]
Time used: 0.707 (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
Unable to integrate (or intergal too complicated), and since no initial conditions are given, then the result can be written as
For solution (2) found earlier, since
Since the ode has the form
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=diff(diff(y(x),x),x)+sin(y(x))*diff(y(x),x)^2 = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying 2nd order Liouville <- 2nd_order Liouville successful
ode=D[y[x],{x,2}]+y[x]*Sin[y[x]](D[y[x],x])^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sin(y(x))*Derivative(y(x), x)**2 + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -sqrt(-Derivative(y(x), (x, 2))/sin(y(x))) + Derivative(y(x), x) cannot be solved by the factorable group method