Determinants
Definition: Cofactor Matrix
Let be a square matrix.
The cofactor matrix of an element of is the matrix obtained by removing the -th row and the -th column of and then sticking the rest of its rows and columns together.
EXAMPLE
The cofactor matrix of the element is
The cofactor matrix of the element is
The cofactor matrix of the element is
Definition: Determinant
The determinant of a square matrix is an element in which is calculated recursively from the coefficients of and their cofactor matrices as follows:
NOTATION
Theorem: Distributivity of the Determinant
Theorem: Determinant of the Transpose
Theorem: Determinant of the Inverse
Theorem: Determinant of Scalar Multiplication
Theorem: Effects of Row and Column Operations on Determinants
For any square matrix :
Swapping two rows or two columns changes the algebraic sign of ‘s determinant.
Multiplying a single row or a single column by results in ‘s determinant being multiplied by .
Adding a non-zero multiple of one row or column to another row or column has no effect on ‘s determinant.
PROOF
TODO
Calculating Determinants
Algorithm: Calculating the Determinant of a Matrix
To calculate the determinant of a square matrix :
Go through the entries in the first row of one by one. Multiply the -th entry with the determinant of its cofactor matrix and alternate the algebraic sign each time - if is even, place a minus sign before the result. Calculating the determinants of the cofactor matrices involves the same process recursively, until a or -matrix is obtained, at which point one can use the theorems for those.
The sum of all results from Step 1 is the determinant of .
Tips
- Search for a row or column with many rows and exchange it with the first one.
- If the first column contains many zeros, calculate the determinant of ‘s Matrices , since they are the same.
EXAMPLE
According to the algorithm
We must now calculate the determinants of the -matrices. 3. For the first matrix:
- For the second matrix:
- For the third matrix:
- For the fourth matrix:
We see that all determinants are and so
Theorem: Determinant of a -Matrix
Theorem: Determinant of a -Matrix
The determinant of every -matrix is given by
PROOF
By definition
The -determinants can be calculated with the previous theorem.