LKM 2.2 Determinant by Row Reduction
LKM 2.2 Determinant by Row Reduction
A BasicTheorem We begin with a fundamental theorem that will lead us to an efficient procedure for
evaluating the determinant of a square matrix of any size.
Proof Since the determinant of A can be found by a cofactor expansion along any row
or column, we can use the row or column of zeros. Thus, if we let C1 , C2 , . . . , Cn denote
the cofactors of A along that row or column, then it follows from Formula (7) or (8) in
Section 2.1 that
det(A) = 0 · C1 + 0 · C2 + · · · + 0 · Cn = 0
The following useful theorem relates the determinant of a matrix and the determinant
of its transpose.
Because transposing a matrix
changes its columns to rows
and its rows to columns, al- THEOREM 2.2.2 Let A be a square matrix. Then det(A) = det(AT ).
most every theorem about the
rows of a determinant has Proof Since transposing a matrix changes its columns to rows and its rows to columns,
a companion version about
the cofactor expansion of A along any row is the same as the cofactor expansion of AT
columns, and vice versa.
along the corresponding column. Thus, both have the same determinant.
Elementary Row The next theorem shows how an elementary row operation on a square matrix affects the
Operations value of its determinant. In place of a formal proof we have provided a table to illustrate
the ideas in the 3 × 3 case (see Table 1).
Table 1
We will verify the first equation in Table 1 and leave the other two for you. To start,
note that the determinants on the two sides of the equation differ only in the first row, so
these determinants have the same cofactors, C11 , C12 , C13 , along that row (since those
cofactors depend only on the entries in the second two rows). Thus, expanding the left
side by cofactors along the first row yields
ka11 ka12 ka13
a21 a22 a23 = ka11 C11 + ka12 C12 + ka13 C13
a a32 a33
31
= k(a11 C11 + a12 C12 + a13 C13 )
a11 a12 a13
= k a21 a22 a23
a a32 a33
31
Elementary Matrices It will be useful to consider the special case of Theorem 2.2.3 in which A = In is the
n × n identity matrix and E (rather than B ) denotes the elementary matrix that results
when the row operation is performed on In . In this special case Theorem 2.2.3 implies
the following result.
Matrices with Proportional If a square matrix A has two proportional rows, then a row of zeros can be introduced
Rows or Columns by adding a suitable multiple of one of the rows to the other. Similarly for columns. But
adding a multiple of one row or column to another does not change the determinant, so
from Theorem 2.2.1, we must have det(A) = 0. This proves the following theorem.
2.2 Evaluating Determinants by Row Reduction 115
THEOREM 2.2.5 If A is a square matrix with two proportional rows or two proportional
columns, then det(A) = 0.
Evaluating Determinants We will now give a method for evaluating determinants that involves substantially less
by Row Reduction computation than cofactor expansion. The idea of the method is to reduce the given
matrix to upper triangular form by elementary row operations, then compute the de-
terminant of the upper triangular matrix (an easy computation), and then relate that
determinant to that of the original matrix. Here is an example.
= (−3)(−55)(1) = 165
116 Chapter 2 Determinants
Cofactor expansion and row or column operations can sometimes be used in com-
bination to provide an effective method for evaluating determinants. The following
example illustrates this idea.
= −18
2.2 Evaluating Determinants by Row Reduction 117