[Math] Obtaining Determinant without Expanding

determinantlinear algebramatrices

The question is #653 from Golan's Linear Algebra Every Graduate Student Should Know and while it doesn't explicitly say not to just expand and factor it, I think that's the spirit of the question.

$$
\begin{vmatrix}
-2a & a+b & a+c\\
a+b & -2b & b+c \\
c+a & c+b & -2c \\
\end{vmatrix}
$$

Since the answer is
$$
4(a+b)(b+c)(a+c)
$$

I am inclined to think it has something to do with wisely dividing out (a+b), etc. from particular rows or some other linear combination tricks but I can't seem to quite figure it out. Any ideas?

Best Answer

Consider $F(a,b,c) = \begin{vmatrix} -2a & a+b & a+c\\ a+b & -2b & b+c \\ c+a & c+b & -2c \\ \end{vmatrix}$

With some work we can show that $F(a,b,c)$ is a cyclic symmetric polynomial of degree $3$.

Now, we can use the properties of such polynomials to evaluate the determinant. When $a=-b$ the determinant becomes $0$. Hence $(a+b)$ is a factor. Similarly $(b+c)$, $(c+a)$ are factors.

Hence $F(a,b,c) = k(a+b)(b+c)(c+a)$. Now, to determine $k$ set $a=1, b=1, c=0$. We get $k=4$.

Hence $F(a,b,c) = 4(a+b)(b+c)(c+a)$

Related Question