I'm struggling with proving the Vandermonde matrix of dimension 4x4. I don't want to get into induction, if that is possible. I know there is a lot of material on the internet but I am looking for a calculation solution, and not an induction one. I have reached this expression:
$$ a_1^3(a_4-a_3)(a_3-a_2)(a_4-a_2)-a_2^3(a_4-a_3)(a_4-a_1)(a_3-a_1)+a_3^3(a_4-a_2)(a_4-a_1)(a_2-a_1)-a_4^3(a_3-a_2)(a_3-a_1)(a_2-a_1) $$ Obviously this is a very long expression to simplify.
Thanks in advance.
Let we consider the following problem: to find a third-degree polynomial $p(x)=c_3 x^3+c_2 x^2 + c_1 x + c_0$ that equals $1$ at $x=a_1$ and $0$ at $x=a_i$ with $i\neq 1$.
By Lagrange interpolation we know that the solution is given by $$ p(x) = \frac{(x-a_2)(x-a_3)(x-a_4)}{(a_1-a_2)(a_1-a_3)(a_1-a_4)} \tag{1}$$ so, for instance, $$ c_0 = p(0) = \frac{-a_2 a_3 a_4}{(a_1-a_2)(a_1-a_3)(a_1-a_4)}.\tag{2} $$ On the other hand, the problem can be stated in the following way: find $(c_0,c_1,c_2,c_3)\in\mathbb{R}^4$ such that $$ \begin{pmatrix}1 & a_1 & a_1^2 & a_1^3 \\ 1 & a_2 & a_2^2 & a_2^3 \\ 1 & a_3 & a_3^2 & a_3^3 \\ 1 & a_4 & a_4^2 & a_4^3 \end{pmatrix}\begin{pmatrix}c_0\\ c_1 \\ c_2 \\ c_3\end{pmatrix}=\begin{pmatrix}1\\ 0 \\ 0 \\ 0\end{pmatrix}\tag{3} $$ If we solve such problem through Cramer's rule we find: $$ c_0 = \frac{\det \begin{pmatrix}a_2 & a_2^2 & a_2^3 \\ a_3 & a_3^2 & a_3^3 \\ a_4 & a_4^2 & a_4^3 \end{pmatrix}}{\det \begin{pmatrix}1 & a_1 & a_1^2 & a_1^3 \\ 1 & a_2 & a_2^2 & a_2^3 \\ 1 & a_3 & a_3^2 & a_3^3 \\ 1 & a_4 & a_4^2 & a_4^3 \end{pmatrix}}=a_2 a_3 a_4\cdot \frac{\det \begin{pmatrix}1 & a_2 & a_2^2 \\ 1 & a_3 & a_3^2 \\ 1 & a_4 & a_4^2 \end{pmatrix}}{\det \begin{pmatrix}1 & a_1 & a_1^2 & a_1^3 \\ 1 & a_2 & a_2^2 & a_2^3 \\ 1 & a_3 & a_3^2 & a_3^3 \\ 1 & a_4 & a_4^2 & a_4^3 \end{pmatrix}}\tag{4}$$ and to prove the claim it is enough to compare $(2)$ and $(4)$, given: $$ \det \begin{pmatrix}1 & a_2 & a_2^2 \\ 1 & a_3 & a_3^2 \\ 1 & a_4 & a_4^2 \end{pmatrix}=\det \begin{pmatrix}1 & a_2 & a_2^2 \\ 0 & a_3-a_2 & a_3^2-a_2^2 \\ 0 & a_4-a_2 & a_4^2-a_2^2 \end{pmatrix}\\=(a_3-a_2)(a_4-a_2)\det\begin{pmatrix}1 & a_3+a_2 \\ 1 & a_4 + a_2\end{pmatrix}=(a_3-a_2)(a_4-a_2)(a_4-a_3).\tag{5} $$ As an alternative, you may directly use Gaussian elimination as performed in $(5)$ to tackle the original problem with a $4\times 4$ Vandermonde matrix.
But out of curiosity, what is the purpose of avoiding induction?