Determinants
Finding the Determinant
The determinant of an n x n matrix can be computed with a cofactor expression across any row or down any column.
The cofactor expression across the ith row is given by this formula.
where
where A_ij is the submatrix created by deleting the ith row and jth column of A. As such, in the following example if A_ij = 1, the following change would occur.
As for columns, it is given by this formula.
C is the same as defined above.
You should get the same answer whatever method you choose.
Finding the Determinant II: The Diagonal Method
The downward diagonal method is an alternative method of finding the determinant for 3x3 matrices.
Multiply the quantities along the six diagonals, and then you can subtract the top ones and add the bottom ones to find the determinant.
Properties of Determinants
Given A is a square matrix, and B is the matrix after the operations were performed on it:
If one row is scaled and then added to another row (changing only one row) det A = det B.
If two rows are interchanged, then det B = det A * -1
If a row is multiplied by scalar k, then det B = k * det A.
There are additional properties that do not involve row operations.
For all square matrices, the determinant of the transpose of A is equal to det A.
For two square matrices A and B, det AB = det A * det B
This go logically, but given k is constant, det kA = k det A.
Last updated
Was this helpful?