Back to ShikshaPal ExplainerClass 12 / Math
ShikshaPal
Class 12 · Math

Determinants

The determinant of a square matrix is a single number that reveals crucial information about that matrix—whether it has an inverse, whether a system of…

Feynman Lens

Start with the simplest version: this lesson is about Determinants. If you can explain the core idea to a friend using everyday language, examples, and one clear reason why it matters, you have moved from memorising to understanding.

The determinant of a square matrix is a single number that reveals crucial information about that matrix—whether it has an inverse, whether a system of equations has a unique solution, and how much a linear transformation scales or rotates space. Think of the determinant as a "health check" for a matrix. If det(A) = 0, the matrix is singular (non-invertible); if det(A) ≠ 0, the matrix is non-singular and invertible. This chapter develops the systematic techniques to compute determinants and harness their power to solve systems of linear equations.

Understanding the Determinant

The determinant of a 2 × 2 matrix is simple:

det [ a  b ] = ad - bc
    [ c  d ]

This formula is memorable: multiply the main diagonal, subtract the product of the anti-diagonal.

Geometric Interpretation: The determinant measures the area scaling of a linear transformation. If you transform a unit square by the matrix, the determinant's absolute value equals the resulting area. If det(A) = 0, the transformation collapses the space into a lower dimension (like projecting a 2D plane onto a line).

Building from Class 11 and Chapter 3

chapter-03-matrices introduced matrices and matrix multiplication. Determinants answer the critical question: Is this matrix invertible? From Class 11, you know that systems of linear equations sometimes have unique solutions, sometimes infinitely many, and sometimes none. Determinants provide the exact criterion:

If det(A) ≠ 0 in the system Ax = b, the solution is unique: x = A⁻¹b.

Computing Determinants

2 × 2 Matrices

det [ a  b ] = ad - bc
    [ c  d ]

3 × 3 Matrices: Expansion by Minors

For a 3 × 3 matrix, expand along any row (say row 1):

det(A) = a₁₁C₁₁ + a₁₂C₁₂ + a₁₃C₁₃

where Cᵢⱼ is the cofactor: Cᵢⱼ = (-1)^(i+j) · Mᵢⱼ, and Mᵢⱼ is the minor (determinant of the 2 × 2 submatrix obtained by deleting row i and column j).

Strategy: Expand along rows or columns with many zeros to reduce computation.

n × n Matrices

Use the same recursive expansion: each n × n determinant reduces to (n-1) × (n-1) minors, eventually reaching 2 × 2 matrices.

Properties of Determinants

These properties dramatically simplify calculations:

  1. Transpose: det(Aᵀ) = det(A)
  2. Scalar multiplication: det(kA) = kⁿ·det(A) for an n × n matrix
  3. Product: det(AB) = det(A)·det(B)
  4. Swapping rows: Swapping two rows multiplies determinant by -1
  5. Adding multiples: Adding a multiple of one row to another doesn't change the determinant
  6. Zero row/column: If any row or column is all zeros, det(A) = 0
  7. Identical rows/columns: det(A) = 0

Practical tip: Use row operations (property 5) to convert the matrix to upper triangular form, where the determinant equals the product of diagonal elements.

Applications: Solving Systems

Cramer's Rule: For Ax = b, if det(A) ≠ 0, then:

xᵢ = det(Aᵢ) / det(A)

where Aᵢ is the matrix A with column i replaced by b.

When to use: Cramer's Rule is elegant for small systems (2 × 2, 3 × 3) but computationally expensive for larger ones. For larger systems, matrix inversion or Gaussian elimination is preferred.

Determinants and Matrix Invertibility

Theorem: A square matrix A has an inverse if and only if det(A) ≠ 0.

Moreover, the inverse can be found using the adjugate matrix:

A⁻¹ = (1/det(A)) · adj(A)

where adj(A) is the transpose of the matrix of cofactors.

This formula is theoretically important but computationally expensive; other methods are preferred in practice.

Connections to Other Topics

Socratic Questions

  1. Why does swapping two rows of a matrix change the sign of the determinant but adding a multiple of one row to another doesn't change it at all? What property of linear equations does this reflect?
  1. If det(A) = 0, what does this tell you about the columns of A? Are they linearly independent or dependent? Why must a system Ax = b either have no solution or infinitely many solutions when det(A) = 0?
  1. For a 3 × 3 matrix, why can you expand the determinant along any row or column and always get the same answer? What mathematical principle guarantees this consistency?
  1. How does the geometric interpretation of determinant as "area scaling factor" change when det(A) is negative? What does the sign tell you about the transformation?
  1. Cramer's Rule gives a formula for solving Ax = b when det(A) ≠ 0, but it's inefficient for large systems. Why is computing n determinants for an n × n system impractical? What computational methods are more efficient?

Term / Concept
Determinant of 2×2 Matrix
tap to flip
det[a b; c d] = ad − bc. Multiply main diagonal, subtract product of anti-diagonal.
Term / Concept
Singular vs Non-singular
tap to flip
A is singular if |A| = 0 (no inverse). Non-singular if |A| ≠ 0 (invertible).
Term / Concept
Cofactor C_ij
tap to flip
C_ij = (−1)^(i+j) · M_ij, where M_ij is the minor obtained by deleting row i and column j.
Term / Concept
Expansion along a Row
tap to flip
|A| = a_i1·C_i1 + a_i2·C_i2 + a_i3·C_i3 for any row i. Same value for any row or column expansion.
Term / Concept
det(kA) for n×n
tap to flip
det(kA) = kⁿ·det(A) where n is the order. For 3×3, det(2A) = 8·det(A).
Term / Concept
det(AB) Property
tap to flip
det(AB) = det(A)·det(B). Also det(Aᵀ) = det(A) and det(A⁻¹) = 1/det(A).
Term / Concept
Adjoint (adj A)
tap to flip
adj(A) = transpose of the cofactor matrix [C_ij]. Satisfies A·adj(A) = adj(A)·A = |A|·I.
Term / Concept
Inverse Formula
tap to flip
A⁻¹ = (1/|A|)·adj(A), valid only when |A| ≠ 0.
Term / Concept
Area of Triangle
tap to flip
Area = (1/2)|det[x₁ y₁ 1; x₂ y₂ 1; x₃ y₃ 1]|. If determinant is 0, the three points are collinear.
Term / Concept
Row Operations Rules
tap to flip
Swapping two rows: |A| → −|A|. Adding a multiple of one row to another: |A| unchanged. Identical rows or zero row: |A| = 0.
Evaluate the determinant |2 4; 3 5|.
  • A 22
  • B 2
  • C −2
  • D 14
If A is a 3×3 matrix with |A| = 5, then |2A| equals:
  • A 10
  • B 40
  • C 20
  • D 5
A square matrix A is invertible if and only if:
  • A det(A) ≠ 0
  • B det(A) = 0
  • C A is symmetric
  • D A is diagonal
Three points (1, 2), (3, 4), (5, k) are collinear. Find k.
  • A 5
  • B 4
  • C 7
  • D 6
If A is a 3×3 non-singular matrix, then |adj A| equals:
  • A |A|
  • B |A|²
  • C |A|³
  • D 1/|A|
0 / 5