Internal
problem
ID
[9994]
Book
:
Collection
of
Kovacic
problems
Section
:
section
2.
Solution
found
using
all
possible
Kovacic
cases
Problem
number
:
1
Date
solved
:
Sunday, March 30, 2025 at 02:51:10 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Time used: 1.217 (sec)
Writing the ode as
Comparing (1) and (2) shows that
Applying the Liouville transformation on the dependent variable gives
Then (2) becomes
Where
Substituting the values of
Comparing the above to (5) shows that
Therefore eq. (4) becomes
Equation (7) is now solved. After finding
The first step is to determine the case of Kovacic algorithm this ode belongs to. There are 3 cases depending on the order of poles of
Case |
Allowed pole order for |
Allowed value for |
1 |
|
|
2 |
Need to have at least one pole
that is either order |
no condition |
3 |
|
|
The order of
The poles of
Attempting to find a solution using case
Unable to find solution using case one
Attempting to find a solution using case
Unable to find solution using case two.
Attempting to find a solution using
Looking at poles of order 2. The partial fractions decomposition of
For the pole at
Where
For the pole at
Where
Let
Where
The above shows that
The value of
The following table summarizes the results found so far for poles and for the order of
pole |
pole order | set |
| | |
| | |
Order of |
set |
|
|
Now that
Where in the above
Gives a non negative integer
The following rational function is
And
The polynomial
The following set of equations are set up in order to determine the coefficients
The coefficients
By using method of undetermined coefficients. Carrying the above computation in eq. (1A) gives the following sequence of polynomials
Because
Where the
The solution
This
Unable to integrate
Since
Where
Since
Therefore the solution is
Will add steps showing solving for IC soon.
ode:=diff(diff(y(x),x),x) = (-3/16/x^2-2/9/(x-1)^2+3/16/x/(x-1))*y(x); dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a quadrature checking if the LODE has constant coefficients checking if the LODE is of Euler type trying a symmetry of the form [xi=0, eta=F(x)] checking if the LODE is missing y -> Trying a Liouvillian solution using Kovacics algorithm A Liouvillian solution exists Tetrahedral Galois group A4_SL2. <- Kovacics algorithm successful
Maple step by step
ode=D[y[x],{x,2}]== ( -3/(16*x^2)- 2/(9*(x-1)^2) + 3/(16*x*(x-1))) *y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((2/(9*(x - 1)**2) - 3/(16*x*(x - 1)) + 3/(16*x**2))*y(x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)