Determinant is a very important mathematical tool in linear algebra. Think of determinant as a "strength" measure of a matrix, it tells us how much change a space undergoes when transformed by that matrix.
Every square matrix has one unique determinant value. This value can be positive, negative, or zero, and each tells us different information about the matrix.
Determinant is a special function that takes a square matrix and produces one real number:
det:Rn×n→R:A↦detA
This function is unique because it has three characteristic properties that no other function has.
If we multiply the entire matrix by a scalar λ, the determinant will be affected by the power of n:
det(λA)=λn⋅detA
This is because each row is multiplied by λ, and there are n total rows.
When we swap two rows of a matrix, the determinant changes sign:
detB=−detA
Interestingly, when we add a multiple of one row to another row, the determinant doesn't change:
det⋮aj⋮ai+λaj⋮
=det⋮aj⋮ai⋮
Multiplying a row by scalar λ=0 changes the determinant to detA′=λ⋅detA. Swapping rows changes the sign to detA′=−detA. Adding multiples of other rows doesn't change the determinant at all.
Determinant is key to understanding whether a matrix can be inverted. For a square matrix A, the following conditions are equivalent:
Matrix A is invertible
There exists an inverse matrixA−1 that satisfies AA−1=I
Full rank matrix: rank(A)=n
Trivial kernel: ker(A)={0}
Columns are linearly independent
Rows are linearly independent
Determinant is not zero: detA=0
If the determinant is zero, the matrix "flattens" space to a lower dimension, so the transformation cannot be inverted.
If the rows of a matrix are linearly dependent, the determinant must be zero. This happens because of the antisymmetric property of determinant, linear dependence creates a situation where we can make identical rows through linear operations.