Internal
problem
ID
[10765]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
309
Date
solved
:
Tuesday, January 27, 2026 at 01:23:28 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
0.165 (sec)
Comparing (1) and (2) shows that
Applying the Liouville transformation on the dependent variable gives
Then (2) becomes
Where \(r\) is given by
Substituting the values of \(A,B,C\) from (3) in the above and simplifying gives
Comparing the above to (5) shows that
Therefore eq. (4) becomes
Equation (7) is now solved. After finding \(z(x)\) then \(y\) is found using the inverse transformation
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 \(r\) and the order of \(r\) at \(\infty \). The following table summarizes these cases.
| Case |
Allowed pole order for \(r\) |
Allowed value for \(\mathcal {O}(\infty )\) |
| 1 |
\(\left \{ 0,1,2,4,6,8,\cdots \right \} \) |
\(\left \{ \cdots ,-6,-4,-2,0,2,3,4,5,6,\cdots \right \} \) |
|
2 |
Need to have at least one pole that is either order \(2\) or odd order greater than \(2\). Any other pole order is allowed as long as the above condition is satisfied. Hence the following set of pole orders are all allowed. \(\{1,2\}\),\(\{1,3\}\),\(\{2\}\),\(\{3\}\),\(\{3,4\}\),\(\{1,2,5\}\). |
no condition |
| 3 |
\(\left \{ 1,2\right \} \) |
\(\left \{ 2,3,4,5,6,7,\cdots \right \} \) |
The order of \(r\) at \(\infty \) is the degree of \(t\) minus the degree of \(s\). Therefore
There are no poles in \(r\). Therefore the set of poles \(\Gamma \) is empty. Since there is no odd order pole larger than \(2\) and the order at \(\infty \) is \(-2\) then the necessary conditions for case one are met. Therefore
Attempting to find a solution using case \(n=1\).
Since the order of \(r\) at \(\infty \) is \(O_r(\infty ) = -2\) then
\([\sqrt r]_\infty \) is the sum of terms involving \(x^i\) for \(0\leq i \leq v\) in the Laurent series for \(\sqrt r\) at \(\infty \). Therefore
Let \(a\) be the coefficient of \(x^v=x^1\) in the above sum. The Laurent series of \(\sqrt r\) at \(\infty \) is
Now we need to find \(b\), where \(b\) be the coefficient of \(x^{v-1} = x^{0}=1\) in \(r\) minus the coefficient of same term but in \(\left ( [\sqrt r]_\infty \right )^2 \) where \([\sqrt r]_\infty \) was found above in Eq (10). Hence
We see that the coefficient of the term \(\frac {1}{x}\) in the quotient is \(-9\). Now \(b\) can be found.
Hence
The following table summarizes the findings so far for poles and for the order of \(r\) at \(\infty \) where \(r\) is
| Order of \(r\) at \(\infty \) | \([\sqrt r]_\infty \) | \(\alpha _\infty ^{+}\) | \(\alpha _\infty ^{-}\) |
| \(-2\) | \(x\) | \(-5\) | \(4\) |
Now that the all \([\sqrt r]_c\) and its associated \(\alpha _c^{\pm }\) have been determined for all the poles in the set \(\Gamma \) and \([\sqrt r]_\infty \) and its associated \(\alpha _\infty ^{\pm }\) have also been found, the next step is to determine possible non negative integer \(d\) from these using
Where \(s(c)\) is either \(+\) or \(-\) and \(s(\infty )\) is the sign of \(\alpha _\infty ^{\pm }\). This is done by trial over all set of families \(s=(s(c))_{c \in \Gamma \cup {\infty }}\) until such \(d\) is found to work in finding candidate \(\omega \). Trying \(\alpha _\infty ^{-} = 4\), and since there are no poles then
Since \(d\) an integer and \(d \geq 0\) then it can be used to find \(\omega \) using
The above gives
Now that \(\omega \) is determined, the next step is find a corresponding minimal polynomial \(p(x)\) of degree \(d=4\) to solve the ode. The polynomial \(p(x)\) needs to satisfy the equation
Let
Substituting the above in eq. (1A) gives
Solving for the coefficients \(a_i\) in the above using method of undetermined coefficients gives
Therefore the first solution to the ode \(z'' = r z\) is
The first solution to the original ode in \(y\) is found from
ode:=diff(diff(y(x),x),x)-2*diff(y(x),x)*x+8*y(x) = 0; 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 Reducible group (found an exponential solution) Group is reducible, not completely reducible Solution has integrals. Trying a special function solution free of integrals\ ... -> Trying a solution in terms of special functions: -> Bessel -> elliptic -> Legendre <- Kummer successful <- special function solution successful -> Trying to convert hypergeometric functions to elementary form... <- elementary form is not straightforward to achieve - returning special \ function solution free of uncomputed integrals <- Kovacics algorithm successful
ode=D[y[x],{x,2}]-2*x*D[y[x],x]+8*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x*Derivative(y(x), x) + 8*y(x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False
Python version: 3.12.3 (main, Aug 14 2025, 17:47:21) [GCC 13.3.0] Sympy version 1.14.0
classify_ode(ode,func=y(x)) ('factorable', '2nd_power_series_ordinary')