Definition
The determinant of a square Matrix , denoted or , is a scalar value that encodes certain properties of the matrix, such as whether it is invertible. Formally, for , the determinant is defined recursively:

  • For , .
  • For ,

    where is the submatrix obtained by removing the first row and -th column of .

Intuition
The determinant measures the “scaling factor” of the transformation represented by the matrix. A matrix with a determinant of represents a transformation that collapses space (e.g., maps a 2D plane to a line or a point), meaning the matrix is not invertible.

Key Properties

  1. Invertibility: is invertible if and only if .
  2. Multiplicative Property: .
  3. Transposition: .
  4. Row Operations:
    • Swapping two rows changes the sign of the determinant.
    • Multiplying a row by a scalar multiplies the determinant by .
    • Adding a scalar multiple of one row to another does not change the determinant.
  5. Diagonal Matrices: For a diagonal or triangular matrix, .

Applications

  • Matrix Inversion: is used in the computation of the inverse via the adjugate formula: .
  • Eigenvalues and eigenvectors: The determinant of (characteristic polynomial) determines the eigenvalues of .
  • Volume Scaling: gives the scaling factor of the volume of a parallelepiped defined by the column vectors of .
  • System of Linear Equation: A system has a unique solution if .

Examples

  1. For ,
  2. For ,

    leading to .