Andromeda
Note

Determinants

Definition

A determinant is a scalar value derived from a square matrix that encodes specific properties of the linear transformation associated with that matrix. For a 2×22 \times 2 matrix A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}, the determinant is D=adbcD = ad - bc.

  • How to read: “The determinant D equals a times d minus b times c.”
  • Meaning: Signed area scaling factor of the 2×22\times2 linear map; zero means the map collapses dimension.

Why It Matters

The determinant is the ultimate “kill switch” for a system of equations; if it’s zero, your mathematical model has collapsed into a lower dimension, rendering the system unsolvable or redundant. It represents the volume scaling factor of transformations.

Core Concepts

  • Minors and Cofactors: Tools for calculating n×nn \times n determinants (n>2n > 2).
    • Minor (MijM_{ij}): Determinant of the matrix remaining after removing row ii and column jj.
    • Cofactor (AijA_{ij}): (1)i+jMij(-1)^{i+j} M_{ij}.
    • How to read: “The cofactor A i j equals negative one raised to the power of i plus j, multiplied by the minor M i j.”
    • Meaning: Minor with sign (1)i+j(-1)^{i+j} for cofactor expansion.
  • Singularity: If D=0D = 0, the matrix is singular (non-invertible), meaning its columns are linearly dependent and the transformation collapses space.

Connected Concepts