Prove that the determinants of two matrices are equal without expanding the determinants

determinantlinear algebramatrices

Let real numbers $a,b,c\in\mathbb{R}$ be given. Without expanding the determinants, prove that the determinants of the matrices
$$\begin{bmatrix}
1&a&bc\\
1&b&ac\\
1&c&ab
\end{bmatrix} \mbox{and} \begin{bmatrix}
1&a&a^2\\
1&b&b^2\\
1&c&c^2
\end{bmatrix}$$
are equal.

My first attempt to solve this was to row reduce both matrices to upper triangular and show that the products of the diagonals are equal. This, however, depends on $a,b,c$ all being non-zero. My next attempt was to apply row operations to show that one matrix is just an even permutation of the columns of the other matrix, but this method has the same issue. Maybe there's some way to look at divisors of the characteristic polynomials and derive the desired conclusion that way, but I'm not seeing it.

Best Answer

It turns out that$$\begin{pmatrix}1&a&a^2\\1&b&b^2\\1&c&c^2\end{pmatrix}=\begin{pmatrix}1&a&bc\\1&b&ac\\1&c&ab\end{pmatrix}.\begin{pmatrix}1&0&-ab-ac-bc\\0&1&a+b+c\\0&0&1\end{pmatrix}.$$Since, obviously,$$\begin{vmatrix}1&0&-ab-ac-bc\\0&1&a+b+c\\0&0&1\end{vmatrix}=1,$$the two given matrices have the same determinant.

Related Question