Processing math: 100%

Determinant Properties

The determinant of a matrix satisfies the following properties:

  1. The determinant of a transposed matrix, det(AT), is the same as the determinant of the original matrix, det(A).
    determinant of a transposed matrix

    Example. In the matrix below, transposing it does not affect the determinant.
    example of determinant computed for a matrix and its transpose

  2. If a matrix is upper or lower triangular, its determinant is simply the product of the elements along the main diagonal.
    determinant of a triangular or diagonal matrix is the product of the diagonal elements

    Example. In these cases, computing the determinant is significantly faster.
    computing the determinant of a triangular matrix

  3. Swapping two rows or two columns flips the sign of the determinant.

    Example.
    example of row swapping

  4. Multiplying a row or a column by a scalar α scales the determinant by the same factor: det(αA) = α det(A).
    determinant

    Example. Here, the fourth row R4 is multiplied by 2, which also doubles the determinant.
    example of row scaling

  5. Adding a multiple of one row to another (or a multiple of one column to another) does not change the determinant.

    Example. In this case, the fourth row R4 is updated by adding twice the first row R1.
    adding a multiple of one row to another

  6. The determinant of a matrix is zero in the following cases:

    a) A row or a column consists entirely of zeros.
    example of a matrix with a zero row
    b) Two rows or two columns are identical.
    example of identical rows
    c) Two rows or two columns are proportional.
    example of proportional rows

    Note. If a row or column can be expressed as a linear combination of other rows or columns, the matrix is linearly dependent, meaning its determinant is zero.

  7. The determinant of the product of two matrices satisfies the following identity: det(AB) = det(A) det(B) ( Binet's Theorem ).
    Binet's theorem
  8. The determinant of the inverse of a matrix is the reciprocal of its determinant: det(A-1) = 1/det(A).
    determinant of the inverse matrix

    Proof. According to Binet's theorem, the determinant of a product A·B is the product of their determinants: det(AB)=det(A)det(B) Applying this to an invertible matrix A and its inverse A-1: det(AA1)=det(A1)det(A) Since multiplying a matrix by its inverse gives the identity matrix, we have: det(AA1)=det(I) The determinant of the identity matrix is 1, so: det(A)det(A1)=1 Therefore: det(A1)=1det(A) This completes the proof.

And so on.

 
 

Please feel free to point out any errors or typos, or share suggestions to improve these notes. English isn't my first language, so if you notice any mistakes, let me know, and I'll be sure to fix them.

FacebookTwitterLinkedinLinkedin
knowledge base

Matrix Determinant

Online Tool

Exercises