[Math] Are there simple methods for calculating the determinant of symmetric matrices

determinantlinear algebramatricessymmetric matrices

I've seen that there are lots of exercises about determinants of symmetric matrices in my algebra books. Some are easy and others are a bit more twisted, but the basic problem is almost always the same. I have been trying to come up with a method to calculate these a bit more quickly, since—at least for me—they invariably end with a very ugly stream of numbers and letters.

For example I started with a $3\times 3$ matrix like this:

$$A= \begin{pmatrix}
a & b & c \\
b & a & b \\
c & b & a \end{pmatrix}$$

which looks fairly simple, but the best I could come up with for the determinant was:

$$2b^2(c-a)+a(a^2-c^2)
\quad
\text{ or }
\quad
a(a^2-2b^2-c^2)+2b^2c$$

These look horrific and absolutely not what anyone in his right mind would use. It goes without saying that I haven't even tried this with matrices bigger than $3\times 3$. Is there something I have been missing, or is there nothing to do about it?

Best Answer

There's not a whole lot you can do to simplify that anymore. In any case, what you've written down is a special case of a symmetric matrix. In general a symmetric $3 \times 3$ matrix will have the form:

$$A= \begin{pmatrix} a & b & c \\ b & d & e \\ c & e & f \end{pmatrix}$$

which has a determinant of $a(df-e^2) + b(ce-bf) + c(be-dc)$. Even worse-looking. The only time it really gets a lot simpler is if you have zeroes in there. The simplest way to calculate is not to calculate.

Related Question