Difficult polynomial and determinant formula

jostpuur
Messages
2,112
Reaction score
19
Anyone having any ideas about how this formula could be proved?

<br /> \underset{k&lt;l}{\prod_{k,l=1}^n} (x_k - x_l) = (-1)^{n(n-1)/2} \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br />

I tried induction without success. The induction step seems to only require other difficult formulas.
 
Physics news on Phys.org
Look up the Vandermonde determinant.
 
I have now seen this Vandermonde determinant been mentioned in several places, but I've still not encountered the proof. It seems that most authors prefer mentioning the result instead of proving it. :devil:
 
What can you say about the ith and jth columns if x_i=x_j? Can you see how to construct a proof from there?
 
I can see that in the equation I wrote, both sides are zero precisely when x_i=x_j for some i\neq j, but I don't see how this remark would help with a proof yet.
 
Do you agree that the determinant is a polynomial in the variables x_i?
 
Yes.
 
What order will the polynomial be in each of the x_i?
 
n-1.
 
  • #10
Subtract x1 (or if you prefer xn) times each row from the next row. You'll then find you get a factor in each column which you can take out and is (x2-x1)(x3-x1)...(xn-x1) and the other factor is the next smallest Vandermonde determinant on x2, x3,... xn. You can also formulate the above as matrix multiplication.

The fiddly may be is getting the expression for sign right. Actually I am not sure you have.
 
  • #11
jostpuur said:
I can see that in the equation I wrote, both sides are zero precisely when x_i=x_j for some i\neq j, but I don't see how this remark would help with a proof yet.

jostpuur said:
Anthony said:
Do you agree that the determinant is a polynomial in the variables x_i?
Yes.

jostpuur said:
Anthony said:
What order will the polynomial be in each of the x_i?
n-1.

This seems to imply that there exists some constant C\in\mathbb{R} so that

<br /> \underset{k&lt;l}{\prod_{k,l=1}^n} (x_k-x_l) = C \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br />

I'll continue thinking.
 
  • #12
epenguin said:
Subtract x1 (or if you prefer xn) times each row from the next row. You'll then find you get a factor in each column which you can take out and is (x2-x1)(x3-x1)...(xn-x1) and the other factor is the next smallest Vandermonde determinant on x2, x3,... xn. You can also formulate the above as matrix multiplication.

The fiddly may be is getting the expression for sign right. Actually I am not sure you have.

By using the formula

<br /> x_k^m - x_l^m = (x_k - x_l)(x_k^{m-1} + x_k^{m-2}x_l + \cdots + x_k x_l^{m-2} + x_l^{m-1})<br />

I managed to do this:

<br /> \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br /> = (x_2 - x_1)\left|\begin{array}{ccccc}<br /> 1 &amp; 0 &amp; 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; 1 &amp; x_3 &amp; \cdots &amp; x_n \\<br /> x_1^2 &amp; x_2+x_1 &amp; x_3^2 &amp; \cdots &amp; x_n^2 \\<br /> \vdots &amp; \vdots &amp; \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; x_2^{n-2} + x_2^{n-3}x_1 + \cdots + x_1^{n-2} &amp; x_3^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right| = \cdots<br />
<br /> \cdots = (-1)^{n-2}\Big(\prod_{k=2}^n (x_1 - x_k)\Big)\left|\begin{array}{cccc}<br /> 1 &amp; 0 &amp; \cdots &amp; 0 \\<br /> x_1 &amp; 1 &amp; \cdots &amp; 1 \\<br /> x_1^2 &amp; x_2 + x_1 &amp; \cdots &amp; x_n + x_1 \\<br /> \vdots &amp; \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; x_2^{n-2} + \cdots + x_1^{n-2} &amp; \cdots &amp; x_n^{n-2} + \cdots + x_1^{n-2} \\<br /> \end{array}\right|<br />

It looks like difficult to proceed. If I subtract the second column from the third column, the three first rows will become this

<br /> 0 - 0 = 0<br />

<br /> 1 - 1 = 0<br />

<br /> (x_3+x_1) - (x_2+x_1) = x_3 - x_2<br />

but what about the rows below these? It becomes an algebraic mess. :confused:
 
  • #13
jostpuur said:
This seems to imply that there exists some constant C\in\mathbb{R} so that

<br /> \underset{k&lt;l}{\prod_{k,l=1}^n} (x_k-x_l) = C \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br />
Hurrah! So all you need do is find the constant C. Can you do that?
 
  • #14
The fourth row will be

<br /> (x_3^2 + x_3x_1 + x_1^2) - (x_2^2 + x_2x_1 + x_1^2) = (x_3-x_2)(x_3 + x_2 + x_1).<br />

This looks good, and most obviously x_3-x_2 will become a common factor, but it is a mystery to me how one proves this. When one proceeds like this, the algebraic expressions at some arbitrary step seem to be complicated.
 
  • #15
Anthony said:
Hurrah! So all you need do is find the constant C. Can you do that?

Maybe. I'll try induction with choice x_n=0, and see what happens.
 
  • #16
Yes, it seems that a recursion formula

<br /> C_n = (-1)^{n+1} C_{n-1}<br />

holds, and by checking the case n=2 first, the constants

<br /> C_n = (-1)^{n(n-1)/2}<br />

follow.

Good job Anthony :wink:
 
  • #17
Glad to be of service.
 
  • #18
I must admit I suspected that you had underestimated the problem at the time of your first post. You made it sound too simple. :wink:
 
  • #19
Actually this is not all clear to me yet. There was one result that I considered trivial earlier, but which turned out to be more difficult. How does on prove that if the vectors

<br /> \left(\begin{array}{c}<br /> 1 \\ x_1 \\ \vdots \\ x_1^{n-1} \\<br /> \end{array}\right),<br /> \left(\begin{array}{c}<br /> 1 \\ x_2 \\ \vdots \\ x_2^{n-1} \\<br /> \end{array}\right),\cdots,<br /> \left(\begin{array}{c}<br /> 1 \\ x_n \\ \vdots \\ x_n^{n-1} \\<br /> \end{array}\right)<br />

are linearly dependent, then x_i=x_j with some i\neq j?
 
  • #20
jostpuur said:
By using the formula

<br /> x_k^m - x_l^m = (x_k - x_l)(x_k^{m-1} + x_k^{m-2}x_l + \cdots + x_k x_l^{m-2} + x_l^{m-1})<br />

I managed to do this:

<br /> \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br /> = (x_2 - x_1)\left|\begin{array}{ccccc}<br /> 1 &amp; 0 &amp; 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; 1 &amp; x_3 &amp; \cdots &amp; x_n \\<br /> x_1^2 &amp; x_2+x_1 &amp; x_3^2 &amp; \cdots &amp; x_n^2 \\<br /> \vdots &amp; \vdots &amp; \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; x_2^{n-2} + x_2^{n-3}x_1 + \cdots + x_1^{n-2} &amp; x_3^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right| = \cdots<br />
<br /> \cdots = (-1)^{n-2}\Big(\prod_{k=2}^n (x_1 - x_k)\Big)\left|\begin{array}{cccc}<br /> 1 &amp; 0 &amp; \cdots &amp; 0 \\<br /> x_1 &amp; 1 &amp; \cdots &amp; 1 \\<br /> x_1^2 &amp; x_2 + x_1 &amp; \cdots &amp; x_n + x_1 \\<br /> \vdots &amp; \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; x_2^{n-2} + \cdots + x_1^{n-2} &amp; \cdots &amp; x_n^{n-2} + \cdots + x_1^{n-2} \\<br /> \end{array}\right|<br />

It looks like difficult to proceed. If I subtract the second column from the third column, the three first rows will become this

<br /> 0 - 0 = 0<br />

<br /> 1 - 1 = 0<br />

<br /> (x_3+x_1) - (x_2+x_1) = x_3 - x_2<br />

but what about the rows below these? It becomes an algebraic mess. :confused:
I can't do tex determinants, but if you subtract x1 X (penultimate row) from last row,..., x1 X first row from second row, then don't you get for first column {1, 0, 0, ...}, for second column {1, (x2-x1), x2(x2-x1), x22(x2-x1), ... ?
 
  • #21
I'm not sure I want to try to complete that calculation now, because the other proof is almost complete.

The way I first thought about it was probably not fully right, because I had ignored the problem I mentioned in the post #19. It could be, however, that this problem can be solved by examining later steps in the proof more carefully.
 
  • #22
hmhmh... I think I made it too difficult now.

jostpuur said:
I can see that in the equation I wrote, both sides are zero precisely when x_i=x_j for some i\neq j, but I don't see how this remark would help with a proof yet.

Here, I might as well have said that the determinant is zero at least when x_i=x_j for some i\neq j, and the proof would have worked the same way.
 
  • #23
jostpuur said:
Here, I might as well have said that the determinant is zero at least when x_i=x_j for some i\neq j, and the proof would have worked the same way.
Exactly. The point is that you know the determinant is a polynomial of degree X say, and you can easily read off X roots, so you are done, modulo a constant.
 
  • #24
Argh! Argh! This has been sleight of hand!

It follows with simple arguments that

<br /> \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br /> =\Big(\underset{k&lt;l}{\prod_{k,l=1}^n} (x_k - x_l)\Big) p(x_1,\ldots, x_n)<br />

with some polynomial p, and then, again with simple arguments it follows that p must be a constant (a polynomial of degree zero).

jostpuur said:
This seems to imply that there exists some constant C\in\mathbb{R} so that

<br /> \underset{k&lt;l}{\prod_{k,l=1}^n} (x_k-x_l) = C \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br />

I'll continue thinking.

Before we can set C=\frac{1}{p}, it must be shown that p\neq 0. In order to show that p\neq 0, it must be shown that the determinant is zero only if x_i=x_j with some i\neq j. This means that we must show that if vectors

<br /> \left(\begin{array}{c}<br /> 1 \\ x_1 \\ \vdots \\ x_1^{n-1} \\<br /> \end{array}\right),<br /> \left(\begin{array}{c}<br /> 1 \\ x_2 \\ \vdots \\ x_2^{n-1} \\<br /> \end{array}\right),\cdots,<br /> \left(\begin{array}{c}<br /> 1 \\ x_n \\ \vdots \\ x_n^{n-1} \\<br /> \end{array}\right)<br />

are linearly dependent, then x_i=x_j with some i\neq j.
 
  • #25
hmhm.. no, I merely got confused with one little earlier mistake. I should have originally said that there exists a constant C_n such that

<br /> C_n\underset{k&lt;l}{\prod_{k,l=1}^n} (x_k-x_l) = \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br />

Now there is no need to start worrying about possibility C_n=0, because the recursion formula

<br /> C_n = (-1)^{n+1} C_{n-1}<br />

can be proven in exactly the same way as earlier, and then C_n\neq 0 follows.

pfuuf... could it be that it is now done...
 
  • #26
You're making a lot of work of this jostpuur! You know that both sides are the same modulo a constant of proportionality. And finding out the constant is easy. You were done many posts ago!
 
  • #27
jostpuur said:
By using the formula

<br /> x_k^m - x_l^m = (x_k - x_l)(x_k^{m-1} + x_k^{m-2}x_l + \cdots + x_k x_l^{m-2} + x_l^{m-1})<br />

I managed to do this:

<br /> \left|\begin{array}{ccc}<br /> 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; \cdots &amp; x_n \\<br /> \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right|<br /> = (x_2 - x_1)\left|\begin{array}{ccccc}<br /> 1 &amp; 0 &amp; 1 &amp; \cdots &amp; 1 \\<br /> x_1 &amp; 1 &amp; x_3 &amp; \cdots &amp; x_n \\<br /> x_1^2 &amp; x_2+x_1 &amp; x_3^2 &amp; \cdots &amp; x_n^2 \\<br /> \vdots &amp; \vdots &amp; \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; x_2^{n-2} + x_2^{n-3}x_1 + \cdots + x_1^{n-2} &amp; x_3^{n-1} &amp; \cdots &amp; x_n^{n-1} \\<br /> \end{array}\right| = \cdots<br />
<br /> \cdots = (-1)^{n-2}\Big(\prod_{k=2}^n (x_1 - x_k)\Big)\left|\begin{array}{cccc}<br /> 1 &amp; 0 &amp; \cdots &amp; 0 \\<br /> x_1 &amp; 1 &amp; \cdots &amp; 1 \\<br /> x_1^2 &amp; x_2 + x_1 &amp; \cdots &amp; x_n + x_1 \\<br /> \vdots &amp; \vdots &amp; &amp; \vdots \\<br /> x_1^{n-1} &amp; x_2^{n-2} + \cdots + x_1^{n-2} &amp; \cdots &amp; x_n^{n-2} + \cdots + x_1^{n-2} \\<br /> \end{array}\right|<br />

It looks like difficult to proceed. If I subtract the second column from the third column, the three first rows will become this

<br /> 0 - 0 = 0<br />

<br /> 1 - 1 = 0<br />

<br /> (x_3+x_1) - (x_2+x_1) = x_3 - x_2<br />

but what about the rows below these? It becomes an algebraic mess. :confused:

IMHO because you are doing it on the columns. Do it on the rows like I said. I cannot see that a (-1)anything comes into it though, someone correct me if I am mistaken.
 

Similar threads

Replies
2
Views
2K
Replies
4
Views
2K
Replies
3
Views
2K
Replies
1
Views
1K
Replies
28
Views
3K
Replies
14
Views
3K
Replies
1
Views
2K
Back
Top