Internal
problem
ID
[9124]
Book
:
Second
order
enumerated
odes
Section
:
section
2
Problem
number
:
2
Date
solved
:
Friday, April 25, 2025 at 05:54:00 PM
CAS
classification
:
[_Liouville, [_2nd_order, _reducible, _mu_xy]]
Time used: 0.365 (sec)
Solve
The ode has the Liouville form given by
Where in this problem
Dividing through by
But the first term in Eq (2A) can be written as
And the last term in Eq (2A) can be written as
Substituting (3A,4A) back into (2A) gives
Integrating the above w.r.t.
Where
Where
Substituting the above into Eq(6A) gives
Which is now solved as first order separable ode. The ode
is separable as it can be written as
Where
Integrating gives
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=diff(diff(y(x),x),x)+diff(y(x),x)*sin(x)+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}]+Sin[x]*D[y[x],x]+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(y(x)*Derivative(y(x), x)**2 + sin(x)*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE (sqrt(-4*y(x)*Derivative(y(x), (x, 2)) + sin(x)**2) + sin(x))/(2*y(x)) + Derivative(y(x), x) cannot be solved by the factorable group method