The determinant of a Matrix (for a square matrix only) is
2x2
3x3
It can be computed along any row or column of A, it doesn’t matter what you pick, actually.
Definitions:
At position in the matrix (that is row i, column j) we define:
- Minor Determinant of the matrix obtained from by removing the th row and the th column
- Cofactor:
Like a checkerboard,
Example:
This should feel familiar to taking the Cross Product
4x4
You gotta take the determinant recursively, so pick determinants with as many zero rows so you don’t have to compute them
Shortcuts
Zero Row/Column:
If you have a row or a column that is zero, the determinant is automatically .
Triangular:
Upper triangular matrices are square matrices with zeros under the main diagonal. Lower triangular matrices are square matrices with zeros above the main diagonal
I guess the “triangle” refers to the numbers that aren’t zero?
upper ฅ^•ﻌ•^ฅ ˙ᵕ˙ lower
Result: the determinant of a triangular matrix is equal to the multiplication of the entries in the diagonal. Wait! You can totally use Row Operations to make matrices triangular.
However:
- but adding a multiple of another row does not change the determinant. this has many uses!
If this works backwards too, if the determinant of the matrix is zero, you know its linearly dependent
- At least one column can be expressed as a linear combination of the others
- The matrix transformation maps some non-zero vector to zero (has a non-trivial nullspace)
- The matrix is not invertible (singular)
If a matrix is square and the columns are linearly independent, then the matrix is Invertable, so this is another great way to find if a matrix has an inverse
Also if and are square matrices, and :
If is invertable than
This works because if a matrix has a determinant of zero, it can’t have an inverse because its linearly dependent
Applications of the determinant
Solve equations when is invertible:
- Method 1:
- Method 2: “Cramer’s rule”
- Thus
- Making
Finding using determinants. We know that yields the identity matrix ()
Adjugate
Find fvol of a parlalellapiped
Homework 6
Problem 1
Find the determinant.
Use Cramer’s rule to solve to following system:
🚨 Cramer’s Rule states, for a 3x3 matrix
Problem 2
Let
Find the determinant of .
Find the matrix of cofactors of .
Find the adjoint of (the adjoint of a matrix is the transpose of the matrix containing the cofactors of the matrix.)
Find the inverse of .
Problem 4
Find the volume of the region.
Recall that for a region defined by vectors, the volume of that region is the absolute value of the determinant of the matrix with those vectors as column vectors.
Problem 5
2/4/25 2/6/25 2/11/25 2/16/25