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
Properties¶
Rather than start with a big formula, we'll list the properties of the determinant. We already know that
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.
3 . (a) If we multiply one row of a matrix by
, the determinant is multiplied by :
3 . (b) The determinant behaves like a linear function on the rows of the matrix:
Property 1 tells us that
From these three properties we can deduce many others:
4 . If two rows of a matrix are equal, its determinant is zero.
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
5 . If
, subtracting times row from row doesn't change the determinant.
In two dimensions, this argument looks like:
The proof for higher dimensional matrices is similar.
6 . If
has a row that is all zeros, then .
We get this from property 3(a) by letting
7 . The determinant of a triangular matrix is the product of the diagonal entries(pivots)
.
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
Note that we cannot use elimination to get a diagonal matrix if one of the
8 .
exactly when is singular.
If
If
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:
where
9 .
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:
because
Also,
10 .
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
Matrix
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).