Reading the Wikipedia page, I’m trying to understand where the two Lucas sequences $U_n(P, Q)$ and $V_n(P, Q)$ come from. The page starts off with
$$f_n=Pf_{n-1}-Qf_{n-2}$$
The characteristic equation is easy enough to find (my personal favorite way).
$$x^2-Px+Q=0$$
The roots of this equation are: $$\alpha = \frac{P+\sqrt{D}}{2} \quad \beta = \frac{P - \sqrt{D}}{2}, \qquad \text{where } D = P^2 - 4Q$$
Thus any form of $C_1\alpha^n+C_2\beta^n$ satisfy the recurrence. What's so special about $U_n(P, Q)$ and $V_n(P, Q)$? The page also annoyingly says "one quickly verifies" the following:
$$\alpha^n = \frac{V_n + U_n \sqrt{D}}{2}, \quad \beta^n = \frac{V_n - U_n \sqrt{D}}{2}$$
But still both of those can be substituted out for other variants. However, it seems that these two definitions allow for a bunch of important things.
What I’m confused about is:
- How do $U_n$ and $V_n$ arise naturally from the recurrence relation?
- Why are their initial conditions typically taken as $U_0 = 0$, $U_1 = 1$, $V_0 = 2$, and $V_1 = P$?
- Can they be derived directly without first assuming their existence?
In short, I’d like to understand the logic or motivation behind the construction of $U_n$ and $V_n$ and how they connect to the recurrence beyond being “predefined” sequences.
Edit: I would like to revisit @CyeWaldman's interesting point about representing $f_n$ in the following form: $$f_n=f_0\color{blue}{S_n}+f_1\color{blue}{T_n}\tag{1}$$ From calculations, it turns out $\color{blue}{T_n}=U_n$; somehow, I initially miscalculated $\color{blue}{S_n}=V_n$, accepted the answer, and proceeded to find properties of $U_n$ and $V_n$ given by $\rm eq. (1)$. However, it turned out $\color{blue}{S_n}$ actually was $$\color{blue}{S_n}=\frac{\alpha\beta^n-\alpha^n\beta}{\alpha-\beta}$$ Does the representation $\rm eq. (1)$ give straightforward properties that makes $U_n$ and $V_n$ interesting? Is $S_n$ important or does it have interesting properties/identities?