In going from $$F(x) = x + x^2 + 2x^3 + 3x^4 + \cdots + F_n x^n + \cdots \tag{1}$$
to the form
$$F(x) = \frac{x}{1-x-x^2}, \tag{2}$$ where $F_n$ is the $n^{\rm th}$ Fibonacci number satisfying the recursion $$F_{n+1} = F_n + F_{n-1}, \quad F_0 = 0, \quad F_1 = 1, \tag{3}$$
how does one proceed? One way is to write
$$x F(x) = x^2 + x^3 + 2x^4 + \cdots + F_{n-1} x^n + F_n x^{n+1} + \cdots, \tag{4}$$
hence
$$\begin{align}
F(x) + x F(x) &= x + 2x^2 + 3x^3 + \cdots + (F_n + F_{n-1})x^n + (F_{n+1} + F_n)x^{n+1} + \cdots \\
&= x + 2x^2 + 3x^3 + \cdots + F_{n+1} x^n + F_{n+2} x^{n+1} + \cdots \\
&= \frac{1}{x}(x^2 + 2x^3 + 3x^4 + \cdots + F_{n+1} x^{n+1} + \cdots ) \\
&= \frac{1}{x}(-x + F(x)) \\
&= -1 + \frac{F(x)}{x}. \tag{5}
\end{align}$$
Thus
$$\left( \frac{1}{x} - 1 - x \right) F(x) = 1, \tag{6}$$
from which $(2)$ directly follows. Now you might look at this proof and think that at no step did we require $x$ to be within some radius of convergence. But in fact, we did! It's just hidden (or some would say, overlooked). The key is in the use of the ellipses "$\cdots$." To see why, let's modify the proof slightly by considering a series of generalized functions, which we will define as $$G_n(x) = x + x^2 + 2x^3 + \cdots + F_n x^n. \tag{7}$$ Here, $G_n$ is a polynomial of degree $n$, whose coefficients are the Fibonacci numbers. What happens when we try to work with $G_n$ instead of $F$? The same steps as before give us
$$x G_n(x) = x^2 + x^3 + 2x^3 + \cdots + F_{n-1} x^n + F_n x^{n+1}, \tag{8}$$
but now,
$$G_n(x) + x G_n(x) = x + 2x^2 + 3x^3 + \cdots + F_{n+1} x^n \color{red}{+ F_n x^{n+1}}, \tag{9}$$
because unlike with the infinite series of $F$, the degree $n+1$ term from $x G_n(x)$ does not have a corresponding term in $G_n(x)$ of the same degree to add together. Then
$$\begin{align}
(1+x)G_n(x) &= \frac{1}{x}\left(x^2 + 2x^3 + 3x^4 + \cdots + F_n x^n\right) + F_{n+1} x^n + F_n x^{n+1} \\
&= \frac{1}{x}(-x + G_n(x)) + F_{n+1} x^n + F_n x^{n+1}. \tag{10}
\end{align}$$
Now this time, if we solve for $G_n(x)$, we obtain
$$G_n(x) = \frac{x}{1-x-x^2} \left(1 - F_{n+1} x^n - F_n x^{n+1}\right). \tag{11}$$
In the limit as $n \to \infty$, the term in parentheses should tend toward $1$, since $\lim_{n \to \infty} G_n(x) = F(x)$. But is this always the case? Well, if we require $1 - F_{n+1} x^n - F_n x^{n+1} \to 1$, that would mean we need $$\lim_{n \to \infty} F_{n+1} x^n + F_n x^{n+1} = 0. \tag{12}$$ But if we were to select, say, $x = 1$, then this would mean $$\lim_{n \to \infty} F_{n+1} + F_n = \lim_{n \to \infty} F_{n+1} = 0,$$ which is of course false. So for such a choice of $x$, the equivalence of $(1)$ and $(2)$ does not hold, because we have shown that in the limit, the sequence of functions $G_n$ evaluated at this point does not converge. Moreover, our work provides a criterion $(12)$ for all $x$ for which we can say that $(1)$ and $(2)$ are equivalent, for if $(12)$ is true, then $(11)$ tends to $(2)$ as $n \to \infty$.
It turns out that $(12)$ implies that $$|x| < \frac{-1 + \sqrt{5}}{2}.$$ A proof is not in the scope of this discussion, but the reader is welcome to attempt one as an exercise. It is not a coincidence that the boundary of this interval is one of the roots of $1-x-x^2$ of the denominator in $(2)$.
xbe in a certain range like|x| < 1. Could you please further clarify? I'm new to this kind of stuff. Sorry if it's a dumb question. – Lingxi Jun 14 '24 at 05:44