📚 StudyHub

📐 Mathematics  ·  Class 12  ·  JEE

Determinants

Evaluation of determinants, cofactors, adjoint, inverse of matrix, Cramer's rule and area applications. Always in board and JEE.

Practice Determinants Quiz — 100% Free →
Reading time~7 min
Revision time~2 min
Last updated2026-07-17
1 Read the chapter ~7 min

🎯 Key Points

  • Determinant of 2×2: |a b; c d| = ad − bc
  • Determinant of 3×3 (expansion along row 1): a₁₁(M₁₁) − a₁₂(M₁₂) + a₁₃(M₁₃) where Mᵢⱼ = 2×2 minor
  • Cofactor Cᵢⱼ = (−1)^(i+j) × Mᵢⱼ (minor with sign); expansion = Σ aᵢⱼ Cᵢⱼ along any row or column
  • Singular matrix: det(A) = 0 (no inverse); Non-singular: det(A) ≠ 0 (inverse exists)
  • Adjoint: adj(A) = transpose of cofactor matrix; A⁻¹ = adj(A)/det(A)
  • det(AB) = det(A)·det(B); det(Aⁿ) = (det A)ⁿ; det(kA) = kⁿ det(A) for n×n matrix
  • Area of triangle with vertices (x₁,y₁),(x₂,y₂),(x₃,y₃) = ½|det| (absolute value)
  • Cramer's rule: for AX=B, x₁=Δ₁/Δ, x₂=Δ₂/Δ (Δ=det(A), Δᵢ=det with i-th column replaced by B)

Properties of Determinants

  • Interchange two rows/columns → determinant changes sign
  • Two identical rows/columns → determinant = 0
  • Multiply one row/column by k → determinant multiplied by k
  • Add scalar multiple of one row to another → determinant unchanged
  • det(A) = det(Aᵀ) — transpose doesn't change determinant

Worked Example: Evaluate 3×3 Determinant

Evaluate: |1 2 3; 4 5 6; 7 8 9|

Expand along R1: 1·|5 6; 8 9| − 2·|4 6; 7 9| + 3·|4 5; 7 8|

= 1·(45−48) − 2·(36−42) + 3·(32−35) = 1·(−3) − 2·(−6) + 3·(−3) = −3 + 12 − 9 = 0

Note: this is 0 because the rows are in arithmetic progression (linearly dependent).

Worked Example: Inverse using Adjoint

Find A⁻¹ for A = |2 1; 5 3|. det(A) = 6−5 = 1. adj(A) = |3 −1; −5 2|. A⁻¹ = adj(A)/1 = |3 −1; −5 2|.

Verify: A·A⁻¹ = |2 1; 5 3|·|3 −1; −5 2| = |6−5, −2+2; 15−15, −5+6| = |1 0; 0 1| = I ✓

Minors and Cofactors

  • Minor Mᵢⱼ of element aᵢⱼ is the determinant left after deleting row i and column j.
  • Cofactor Cᵢⱼ = (−1)^(i+j) Mᵢⱼ — the minor with a sign from the checkerboard pattern (+ − + / − + − / + − +).
  • Expansion along any row or column gives the same value: det(A) = aᵢ₁Cᵢ₁ + aᵢ₂Cᵢ₂ + aᵢ₃Cᵢ₃.
  • Key identity: the sum of products of one row's elements with the cofactors of a DIFFERENT row is 0 (e.g. a₁₁C₂₁ + a₁₂C₂₂ + a₁₃C₂₃ = 0).

Area of a Triangle

The area of a triangle with vertices (x₁,y₁), (x₂,y₂), (x₃,y₃) is:

Area = ½ |x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)|

written as the determinant ½ |x₁ y₁ 1; x₂ y₂ 1; x₃ y₃ 1| (absolute value, since area is non-negative). The three points are collinear exactly when this determinant equals 0.

Adjoint and Inverse of a Matrix

  • adj(A) is the transpose of the cofactor matrix.
  • Fundamental relation: A(adj A) = (adj A)A = det(A) I.
  • If det(A) ≠ 0 (non-singular), the inverse exists: A⁻¹ = adj(A)/det(A).
  • |adj A| = |A|ⁿ⁻¹ and adj(adj A) = |A|ⁿ⁻² A for an n×n matrix.

Solving Systems of Linear Equations and Consistency

Write a linear system as AX = B, where A is the coefficient matrix, X the variable column, and B the constant column.

  • Matrix method: if det(A) ≠ 0, the unique solution is X = A⁻¹B.
  • Cramer's rule: x = Δ₁/Δ, y = Δ₂/Δ, z = Δ₃/Δ, where Δ = det(A) and Δᵢ replaces the i-th column of A with B.
  • Consistency: Δ ≠ 0 → unique solution (consistent). Δ = 0 with every Δᵢ = 0 → infinitely many solutions (consistent, dependent). Δ = 0 with some Δᵢ ≠ 0 → no solution (inconsistent).
  • Homogeneous system AX = 0: Δ ≠ 0 gives only the trivial solution X = 0; Δ = 0 gives non-trivial (infinitely many) solutions.

Expansion of a Determinant (2×2 and 3×3)

  • 2×2: |a b; c d| = ad − bc (product of the main diagonal minus product of the off-diagonal).
  • 3×3 by cofactors: expand along any row or column, e.g. along R1: a₁₁C₁₁ + a₁₂C₁₂ + a₁₃C₁₃ — choose the row/column with the most zeros to minimise work.
  • Sarrus (diagonal) rule for 3×3 only: add the three products going down-right and subtract the three going down-left: (a₁₁a₂₂a₃₃ + a₁₂a₂₃a₃₁ + a₁₃a₂₁a₃₂) − (a₁₃a₂₂a₃₁ + a₁₁a₂₃a₃₂ + a₁₂a₂₁a₃₃).
  • The sign pattern for cofactors is the checkerboard + − + / − + − / + − +.

Evaluating Determinants Using Row and Column Operations

Instead of a full expansion, use elementary operations to create zeros, then expand along that row/column.

  • Allowed without changing the value: adding a scalar multiple of one row (or column) to another, e.g. R₂ → R₂ − 2R₁.
  • Interchanging two rows/columns multiplies the value by −1; taking a common factor k out of a row/column multiplies the value by k.
  • Aim to make a row or column have two zeros so a single cofactor remains.
  • Example: applying C₁ → C₁ + C₂ + C₃ often produces a common factor (like a+b+c) that can be pulled outside.

Equation of a Line Through Two Points

The line through A(x₁, y₁) and B(x₂, y₂) is the set of points P(x, y) collinear with A and B, so the area determinant vanishes:

|x y 1; x₁ y₁ 1; x₂ y₂ 1| = 0

Expanding this gives the standard equation of the line. The same vanishing determinant is the condition for three given points to be collinear.

Singular and Non-Singular Matrices

  • Singular: det(A) = 0 — the inverse does NOT exist; rows/columns are linearly dependent.
  • Non-singular: det(A) ≠ 0 — the inverse A-1 = adj(A)/det(A) exists and is unique.
  • Product rule: if either A or B is singular then AB is singular, since det(AB) = det(A)·det(B).
  • A system AX = B has a unique solution exactly when the coefficient matrix is non-singular.
2 Revise ~2 min before the exam

📐 Formula Sheet

  • 2×2 determinant: |a b; c d| = ad − bc
  • 3×3 (expansion along row 1): a₁(b₂c₃ − b₃c₂) − a₂(b₁c₃ − b₃c₁) + a₃(b₁c₂ − b₂c₁)
  • Key properties: swapping two rows flips the sign; two identical rows ⇒ determinant 0; multiplying a row by k multiplies |A| by k
  • Scaling: |kA| = kⁿ|A| for an n×n matrix  |  |AB| = |A||B|  |  |Aᵀ| = |A|
  • Adjoint: A·adj(A) = |A|·I  |  |adj A| = |A|n−1
  • Inverse: A⁻¹ = adj(A)/|A|, which exists only when |A| ≠ 0
  • Area of a triangle: ½|x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)|; the points are collinear when this is 0
  • Cramer's rule: x = Dx/D, y = Dy/D, z = Dz/D
  • System of equations: D ≠ 0 ⇒ unique solution; D = 0 with all Dx = Dy = Dz = 0 ⇒ infinitely many; D = 0 with any Di ≠ 0 ⇒ no solution
3 Practice apply it

✍️ Worked Examples

Example 1 — Evaluating a 3×3 determinant
Q: Evaluate |1 2 3; 4 5 6; 7 8 9|.
Step 1 — Expand along the first row: 1(5×9 − 6×8) − 2(4×9 − 6×7) + 3(4×8 − 5×7).
Step 2 — Compute each bracket: 1(45 − 48) − 2(36 − 42) + 3(32 − 35) = 1(−3) − 2(−6) + 3(−3).
Step 3 — Combine: −3 + 12 − 9 = 0.
Answer: 0. Why: R₁ + R₃ = 2R₂, so the rows are linearly dependent — a determinant with dependent rows is always zero.

Example 2 — Cramer's rule
Q: Solve 2x + y = 5 and 3x − y = 5 using determinants.
Step 1 — Coefficient determinant: D = |2 1; 3 −1| = (2)(−1) − (1)(3) = −5.
Step 2 — Replace column 1 with the constants: Dx = |5 1; 5 −1| = (5)(−1) − (1)(5) = −10.
Step 3 — Replace column 2: Dy = |2 5; 3 5| = (2)(5) − (5)(3) = −5.
Step 4 — Divide: x = Dx/D = −10/−5 = 2; y = Dy/D = −5/−5 = 1.
Answer: x = 2, y = 1. Check: 2(2) + 1 = 5 ✓ and 3(2) − 1 = 5 ✓.

Example 3 — Collinearity via determinant
Q: Show that (1, 2), (3, 6) and (5, 10) are collinear.
Step 1 — Area = ½|x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)|.
Step 2 — Substitute: ½|1(6 − 10) + 3(10 − 2) + 5(2 − 6)| = ½|−4 + 24 − 20|.
Step 3 — Compute: ½|0| = 0.
Answer: the area is zero, so the three points lie on one line. Note: all three satisfy y = 2x, confirming it.

Practice Determinants Quiz — 100% Free →

Frequently Asked Questions — Determinants

What are the key concepts in Determinants?
Evaluation of determinants, cofactors, adjoint, inverse of matrix, Cramer's rule and area applications. Always in board and JEE.
Is Determinants important for JEE?
Yes. Determinants is part of the Mathematics Class 12 NCERT syllabus and is directly tested in JEE examinations. StudyHub provides structured notes, diagrams, and practice questions covering all exam-level subtopics.
How can I practice Determinants questions on StudyHub?
Open StudyHub and select Mathematics → Determinants. Choose Easy, Medium, or Hard difficulty. Hard-tier questions are at JEE level with full step-by-step explanations.

References

  1. NCERT Class 12 Mathematics Textbook — Chapter: Determinants
  2. CBSE Curriculum — Mathematics (Class 12)
  3. NTA JEE Main Official Syllabus — subject-wise topic list