Determinant of a Matrix
Quick answer A determinant is a single real number computed from a square matrix, found by a direct formula for order 2 or by expansion along a row/column for order 3.
A determinant is a unique number (a scalar) associated with every square matrix. If A is a square matrix, its determinant is written as |A| or det(A) or Δ. Determinants let us test whether a matrix has an inverse, find the area of a triangle, check collinearity of points, and solve systems of linear equations.
For a matrix of order 1, A = [a], the determinant is simply |A| = a.
For a square matrix of order 2, A = [[a1, b1], [a2, b2]], the determinant is defined as |A| = a1b2 − a2b1.
For a square matrix of order 3, the determinant is evaluated by expansion along any row or column. Expanding along the first row of A = [[a1,b1,c1],[a2,b2,c2],[a3,b3,c3]] gives:
|A| = a1(b2c3 − b3c2) − b1(a2c3 − a3c2) + c1(a2b3 − a3b2)
Each term is the entry multiplied by the 2×2 determinant left after deleting the row and column of that entry, with alternating signs (+, −, +) across the row. Expanding along any other row or column always gives the same value — this is proved formally in the next section.
Worked Example: Evaluate the determinant of A = [[2, 3, 5], [6, 0, 4], [1, 5, 7]].
Expanding along the first row:
|A| = 2(0×7 − 4×5) − 3(6×7 − 4×1) + 5(6×5 − 0×1)
|A| = 2(0 − 20) − 3(42 − 4) + 5(30 − 0)
|A| = 2(−20) − 3(38) + 5(30) = −40 − 114 + 150 = −4
So |A| = −4.
- A determinant is a single real number associated with a square matrix; only square matrices have determinants.
- Order 1: |a| = a. Order 2: |a1 b1; a2 b2| = a1b2 − a2b1.
- A 3×3 determinant is evaluated by expansion along any row or column, using alternating +, −, + signs.
- Expansion along different rows/columns always yields the same numerical value.
- A matrix that is not square has no determinant at all.
