Skip to content

Properties of Determinants

Determinants

Now halfway through the course, we leave behind rectangular matrices and focus on square ones. Our next big topics are determinants and eigenvalues.

The determinant is a number associated with any square matrix; we'll write it as det A or \(|A|\). The determinant encodes a lot of information about the matrix; the matrix is invertible exactly when the determinant is non-zero.

Properties

Rather than start with a big formula, we'll list the properties of the determinant. We already know that \(\begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc\); these properties will give us a formula for the determinant of square matrices of all sizes.

1 . |I| = 1

2 . If you exchange two rows of a matrix, you reverse the sign of its determinant from positive to negative or from negative to positive.

\[ \begin{vmatrix} a & b \\ c & d \\ \end{vmatrix} = - \begin{vmatrix} c & d \\ a & b \\ \end{vmatrix} \]

3 . (a) If we multiply one row of a matrix by \(t\), the determinant is multiplied by \(t\):

\[ \begin{vmatrix} ta & tb \\ c & d \\ \end{vmatrix} = t \begin{vmatrix} a & b \\ c & d \\ \end{vmatrix} \]

3 . (b) The determinant behaves like a linear function on the rows of the matrix:

\[ \begin{vmatrix} a + a' & b + b' \\ c & d \\ \end{vmatrix} = \begin{vmatrix} a & b \\ c & d \\ \end{vmatrix} + \begin{vmatrix} a' & b' \\ c & d \\ \end{vmatrix} \]

Property 1 tells us that \(\begin{vmatrix} 1 & 0 \\ 0 & 1 \end{vmatrix} = 1\). Property 2 tells us that \(\begin{vmatrix} 0 & 1 \\ 1 & 0 \end{vmatrix} = -1\). The determinant of a permutation matrix \(P\) is \(1\) or \(-1\) depending o whether \(P\) exchanges an even or odd number of rows.

From these three properties we can deduce many others:

4 . If two rows of a matrix are equal, its determinant is zero.

\[ \begin{vmatrix} a & b \\ a & b \\ \end{vmatrix} = 0 \]

This is because of property 2, the exchange rule. On the one hand, exchanging the two identical rows does not change the determinant. On the other hand, exchanging the two rows changes the sign of the determinant. Therefore the determinant must be \(0\).

5 . If \(i \ne j\), subtracting \(t\) times row \(i\) from row \(j\) doesn't change the determinant.

In two dimensions, this argument looks like:

\[ \begin{align} \begin{vmatrix} a & b \\ c - ta & d - tb \\ \end{vmatrix} &= \begin{vmatrix} a & b \\ c & d \\ \end{vmatrix} - \begin{vmatrix} a & b \\ ta & tb \\ \end{vmatrix} \text{ property 3(b)} \\ &= \begin{vmatrix} a & b \\ c & d \\ \end{vmatrix} - t \begin{vmatrix} a & b \\ a & b \\ \end{vmatrix} \text{ property 3(a)} \\ &= \begin{vmatrix} a & b \\ c & d \\ \end{vmatrix} \text{ property 4} \end{align} \]

The proof for higher dimensional matrices is similar.

6 . If \(A\) has a row that is all zeros, then \(\det A = 0\).

We get this from property 3(a) by letting \(t = 0\).

7 . The determinant of a triangular matrix is the product of the diagonal entries(pivots) \(d_1, d_2, \cdots, d_n\).

Property 5 tells us that the determinant of the triangular matrix won't change if we use elimination to convert it to a diagonal matrix with the entries \(d_i\) on its diagonal. Then property 3(a) tells us that the determinant of this digonal matrix is the product \(d_1d_2 \cdots d_n\) times the determinant of the identity matrix. Property 1 completes the arguments.

Note that we cannot use elimination to get a diagonal matrix if one of the \(d_i\) is zero. In that case elimination will give us a row of zeros and property 6 gives us the conclusion we want.

8 . \(\det A = 0\) exactly when \(A\) is singular.

If \(A\) is singular, then we can use elimination to get a row of zeros, and property 6 tells us that determinant is zero.

If \(A\) is not singular, then elimination produces a full set of pivots \(d_1, d_2, \cdots, d_n\) and the determinant is \(d_1d_2 \cdots d_n \ne 0\) (with minus signs from row exchanges).

We now have a very practical formula for the determinant of a non-singular matrix. In fact, the way computers find the determinants of large matrices is to first perform elimination (keeping track of whether the row exchanges is odd or even) and then multiply the pivots:

\[ \begin{bmatrix} a & b \\ c & d \end{bmatrix} \to \begin{bmatrix} a & b \\ 0 & d - \frac{c}{a}b \end{bmatrix} \]

where \(a \ne 0\), so

\[ \begin{vmatrix} a & b \\ c & d \end{vmatrix} = a(d - \frac{c}{a}b) = ad - bc \]

9 . \(\det AB = (\det A)(\det B)\)

This is very useful. Although the determinant of a sum does not equal the sum of the determinants, it is true that the determinant of a product equals the product of the determinants.

For example:

\[ \det A^{-1} = \frac{1}{\det A} \]

because \(A^{-1}A = 1\). (Note that if \(A\) is singular then \(A^{-1}\) does not exist and \(\det A^{-1}\) is undefined.)

Also, \(\det A^2 = (\det A)^2\) and \(\det 2A = 2^n \det A\) (applying property 3 to each row of the matrix). This reminds us of volume, if we double the length, width and height of a tree dimensional box, we increase its volume by a multiple of \(2^3 = 8\).

10 . \(\det A^T = \det A\)

\[ \begin{vmatrix} a & b \\ c & d \end{vmatrix} = \begin{vmatrix} a & c \\ b & d \end{vmatrix} = ad - bc \]

This lets us translate properties(2, 3, 4, 5, 6) involving rows into statements about columns. For instance, if a column of a matrix is all zeros then then the determinant of that matrix is zero.

To see why \(|A^T| = |A|\), use elimination to write \(A = LU\). The statement becomes \(|U^TL^T| = |LU|\). Rule 9 then tells us \(|U^T||L^T| = |L||U|\).

Matrix \(L\) is a lower triangular matrix with \(1\)'s on the diagonal, so rule 5 tells us that \(|L| = |L^T| = 1\). Because \(U\) is upper triangular, rule 5 tells us that \(|U| = |U^T|\). Therefore \(|U^T||L^T| = |L||U|\) and \(|A^T| = |A|\).

We have one loose end to worry about. Rule 2 told us that a row exchange changes the sign of the determinant. If it's possible to do seven row exchanges and get the same matrix you would by doging ten row changes, then we could prove that the determinant equals its negative. To complete the proof that the determinant is well defined by properties 1, 2 and 3 we'd need to show that the result of an odd number of row exchanges (odd permutation) can never be the same as the result of an even number of row exchanges(even permutation).