I have been given a formula for a polynomial regression
$$yt=\beta_0+\beta_1t+\cdots+\beta_kt^k+ut\text{ for }t=1\cdots n$$
I know that when writing this system in matrix form that this matrix is a Vandermonde matrix $X$. I've been told that if $n>k$ that $\mathrm{rank}(X)=k+1$. I was wondering how I would be able to show that.
This is because a polynomial of degree n that has more than n roots is the zero polynomial. Thus a polynomial of degree n is uniquely defined by the images of n+1 distinct values, which therefor makes your Vandermonde matrix of rank n+1.
EDIT: A more detailed version of what i wrote previously
Let $P = \beta_0 + \beta_1 X + ... + \beta_n X^n$ be your polynomial of degree at most n
$A = \left| \begin{array}{ c c c} t_0^0 & ... & t_k^0\\ ... & & ...\\ t_0^k & ... & t_k^k\\ \end{array} \right| = [t_i^j]_{i, j \in [0, k]}$ be the Vandermonde matrix of k+1 of your distinct computed values,
$B= \left| \begin{array}{ c } \beta_0\\ ...\\ \beta_n \end{array} \right|$ be the matrix of your polynomial's coefficient and
$Y = \left| \begin{array}{ c } y_0\\ ...\\ y_n \end{array} \right|$ be the matrix of the images of your the different $t_n$ ($y_i = P(t_i)$ for $i \in [0, n]$).
You then have $AB = Y$.
Now let $Q, R \in \Bbb C_n[X]$ be complex polynomials of degree at most n. The D'Alembert-gauss theorem (which i will not prove here) states that any complex polynomial of degree >0 has at least 1 complex root. It follows that if a polynomial of degree at most n has more than n+1 roots, it is the zero polynomial.
Thus if $Q$ and $R$ match on $n+1$ values, $Q-R$ has $n+1$ roots so $Q-R = 0$ ie $Q=R$. This mean that P is uniquely defined by $y_0, ..., y_n$ and $A$ is therfore inversible and $B=A^{-1} Y$.
This means that $rank(A) = n+1$. Adding collumns (ie $t_{n+1}, t_{n+2}, ...$) can only increase the rank of your matrix, thus the rank of your matrix is n+1.