I've stumbled upon a method (the method of Frobenius) for finding an infinite power series of an ODE about a regular singular point.
Say we know the two solutions for the indicial equation (denoted as $r_1$, $r_2$) follow:
$$r_1 - r_2 = m$$ (where $m$ is an integer)
Then the solutions of the ODE ($y_1$, $y_2$) can be expressed such that:
$$y_1 = x^{r_1}\sum_{n=0}^\infty a_nx^n$$ $$y_2 = Cy_1 \ln{x} + x^{r_2}\sum_{n=0}^\infty b_nx^n$$
The solution is derived from the link here. (Starts at the end of page 28)
However, it has some Big-O Notation usage which doesn't make much sense to me. I'll quote a part of the proof from the link above here:
$$ v'(x) = \frac{1}{x^{2r_1}y_1}e^{-\int{p_0/x + p_1+O(x)}} = \frac{1}{x^{2r_1 + p_0}y_1}e^{-p_1x + O(x^2)} = \frac{1}{x^{2r_1 + p_0}}O(1) $$
What's going on here - I didn't know big-O notation could be used this way, why does this work in the context of the proof, and how is the $O(1)$ even derived?
Later, this is integrated to somehow get an infinite sequence (which completes the proof, after using the fact that $y_2(x) = v(x)y_1(x)$ as stated previously in the proof) - how is integration defined for $O(1)$?
a) With your logic, surely you could make the claim that any analytic function could be written as $O(1)$
b) Is your logic here that since the LHS (including ${y_1}^2$) has a valid power series expansion (due to it being analytic), we could just call it a day and integrate each term?
– Sam Apr 06 '23 at 12:17