Internal
problem
ID
[9142]
Book
:
Second
order
enumerated
odes
Section
:
section
2
Problem
number
:
21
Date
solved
:
Friday, April 25, 2025 at 05:57:25 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]
Time used: 0.461 (sec)
Solve
In normal form the ode
Becomes
Where
Applying change of variables
Where
Let
This ode is solved resulting in
Using (6) to evaluate
Substituting the above in (3) and noting that now
The above ode is now solved for
Where in the above
Since exponential function is never zero, then dividing Eq(2) throughout by
Equation (2) is the characteristic equation of the ODE. Its roots determine the general solution form.Using the quadratic formula
Substituting
Hence
Which simplifies to
Since roots are complex conjugate of each others, then let the roots be
Where
Which becomes
Or
Will add steps showing solving for IC soon.
The above solution is now transformed back to
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.450 (sec)
Solve
In normal form the ode
Becomes
Where
Applying change of variables
Where
Let
Substituting the above into (4) results in
Therefore ode (3) now becomes
The above ode is now solved for
Now from (6)
Substituting the above into the solution obtained gives
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=diff(diff(y(x),x),x)+cot(x)*diff(y(x),x)+4*y(x)*csc(x)^2 = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a symmetry of the form [xi=0, eta=F(x)] <- linear_1 successful
ode=D[y[x],{x,2}]+Cot[x]*D[y[x],x]+4*y[x]*Csc[x]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*y(x)/sin(x)**2 + Derivative(y(x), (x, 2)) + Derivative(y(x), x)/tan(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE 4*y(x)*tan(x)/sin(x)**2 + tan(x)*Derivative(y(x), (x, 2)) + Derivative(y(x), x) cannot be solved by the factorable group method