The n×n Vandermonde matrix is the matrix Vn=(1x0x20…xn−10 1x1x21…xn−11 ⋮⋮ 1xn−1x2n−1…xn−1n−1)
- Calculate p=det(V7). (Hint: work out what the code
x = var('x',n=7)
does.
1. How many terms does the polynomial p have? Hint: work out what the method number_of_operands
does).
2. Factorise p.
3. Based on the above calculations make a guess for a general fact about the determinant of any Vandermonde matrix.
How would I solve this question? or How would I at the least get started on it?