02
CLASS 12 · MATHEMATICS · CHAPTER 4

Properties of
Determinants

Six powerful properties that simplify determinant calculations dramatically.

P

Why Properties Matter

Computing a 3×3 determinant from scratch involves many multiplications. Properties of determinants allow us to simplify the matrix first (introduce zeros, reduce rows) and then evaluate it easily. In exams, these properties save enormous time.

💡

The value of a determinant does not change when valid row/column operations are applied (with exceptions noted). The goal is always to make the matrix triangular or introduce zeros.

1

Property 1 — Transpose

Property 01
|A| = |Aᵀ|

The value of the determinant remains unchanged when rows and columns are interchanged (i.e., when the matrix is transposed).

det(A) = det(Aᵀ)

Implication: Any property that holds for rows also holds for columns and vice versa. This doubles the number of useful operations available to us.

✏️ Example
Verify for A = [[1,2],[3,4]]
1

|A| = 1×4 − 2×3 = 4 − 6 = −2

2

Aᵀ = [[1,3],[2,4]], |Aᵀ| = 1×4 − 3×2 = 4 − 6 = −2

2

Property 2 — Row/Column of Zeros

Property 02
If any row (or column) is all zeros → |A| = 0

A determinant is zero if all elements of any one row or one column are zero.

R_i = [0, 0, 0] ⟹ |A| = 0
✏️ Example
A = [[1,2,3],[0,0,0],[7,8,9]]

Row 2 is all zeros → |A| = 0 (no calculation needed!)

3

Property 3 — Row Interchange

Property 03
Interchanging two rows (or columns) changes the sign of |A|

If any two rows (or columns) of a determinant are interchanged, then the sign of the determinant changes but its magnitude stays the same.

R_i ↔ R_j ⟹ |A| → −|A|
⚠️

Each swap of rows/columns negates the determinant. Two swaps bring it back to the original. Keep track of the number of swaps!

✏️ Example
A = [[1,2],[3,4]], swap R1 and R2
1

|A| = 1×4 − 2×3 = −2

2

After R1↔R2: B = [[3,4],[1,2]], |B| = 3×2 − 4×1 = 6 − 4 = +2 = −(−2)

4

Property 4 — Identical Rows

Property 04
If two rows (or columns) are identical → |A| = 0

When any two rows (or columns) of a determinant are identical (or proportional), the value of the determinant is zero.

R_i = R_j ⟹ |A| = 0

Proof sketch: Swap the two identical rows → sign changes → |A| = −|A| → 2|A| = 0 → |A| = 0. Elegant!

This also applies if two rows are proportional (one is a scalar multiple of the other).

✏️ Example
Show |A| = 0 for A = [[1,2,3],[4,5,6],[2,4,6]]

R3 = 2×R1. Since rows are proportional → |A| = 0

5

Property 5 — Scalar Multiple

Property 05
If each element of a row is multiplied by k, the determinant is multiplied by k

Multiplying all elements of any one row (or column) by a scalar k multiplies the determinant by k.

kRᵢ ⟹ |A| becomes k·|A|
💡

Important contrast with matrices: For an n×n matrix, |kA| = kⁿ|A| (scalar applies to ALL rows). But this property is about multiplying just ONE row.

For n×n matrix A
|kA| = kⁿ |A|
6

Property 6 — Row Operation

Property 06 ⭐ Most Used in Exams
Rᵢ → Rᵢ + k·Rⱼ does NOT change |A|

Adding to any row (or column) a scalar multiple of another row (or column) leaves the determinant unchanged.

Rᵢ → Rᵢ + k·Rⱼ ⟹ |A| unchanged

This is the most powerful property — it's the basis of row reduction. We use it to introduce zeros in the matrix and simplify computation.

✏️ Exam Strategy — Introducing Zeros
Simplify before computing
1

Apply R₁ → R₁ − R₂ (or other combinations) to introduce zeros

2

Apply R₂ → R₂ − R₃ etc.

3

Expand along the row/column with most zeros

Quick Reference Summary

#PropertyEffect on |A|
1TransposeNo change
2Row/Column of zeros|A| = 0
3Swap two rows/columnsSign changes (×−1)
4Identical or proportional rows|A| = 0
5Multiply one row by kMultiplied by k
6Rᵢ → Rᵢ + k·RⱼNo change ⭐