Say you have two sequences which are given by a polynomial of some degree. Both of these sequences share a term. Is there a way to find the missing term, and what is the minimum number of values (or information in general, such as degree of the polynomial) for each sequence for a unique solution to be found?
To make this a little bit clearer, I have an example of sequences which I know share a term but I do not know what that term is. The sequences are:
- 0, 6, 30, __
- 0, 12, 40, __
I also know that both of these sequences are increasing and that they may be third degree polynomials (they definitely are the same degree).
From the information given by these two sequences, is it possible to find out what the forth term (which is common to both of them) is, and how do you go about solving such a problem?
I assume you mean that $$a_n=v_3 n^3+v_2 n^2+v_1 n+v_0\\b_n=u_3 n^3+u_2 n^2+u_1 n+u_0$$which are also expressible as $$a_n=p_0(n-p_1)(n-p_2)(n-p_3)\\b_n=q_0(n-q_1)(n-q_2)(n-q_3)$$while $a_1=b_1=0$ we have $p_1=q_1=1$. Also for the rest of the terms we have $$p_0(2-p_1)(2-p_2)=6\\p_0(3-p_1)(3-p_2)=30$$and $$p_0(2-p_1)(2-p_2)=12\\q_0(3-q_1)(3-q_2)=40$$but we can not go further since we have 4 equations and 6 unknown variables. An extra constraint may be $p_0=q_0=1$.