Matrices and Determinants
Matrix algebra, transpose, determinants, minors, cofactors, adjoint, inverse, system of linear equations — NCERT Class 12 Maths Ch 3 & 4
Board Exam Tips
- →Solving a 3×3 linear system by the matrix method (X = A⁻¹B) is a guaranteed 5-mark question.
- →Verify (adj A)·A = |A|·I after computing the adjoint — a quick sanity check catches sign errors.
- →Matrix multiplication is NOT commutative — never write AB = BA unless you have justified it.
- →For 'find x such that |A| = 0' problems, expand along the row or column with the most zeros.
- →Always state 'system is consistent' or 'inconsistent' based on |A| and (adj A)·B — CBSE gives 1 mark for the conclusion.
📐 Formulas(14)
Matrix Addition
Scalar Multiplication
Matrix Multiplication★ Board fav
Transpose★ Board fav
Determinant of 2×2★ Board fav
Determinant of 3×3 (Cofactor Expansion)★ Board fav
Product Rule for Determinants
Adjoint★ Board fav
Fundamental Identity
Inverse via Adjoint★ Board fav
Matrix Method for Linear System★ Board fav
Consistency Criteria
Inverse of Transpose and Product
Symmetric and Skew-Symmetric
✏️ Solved Examples
If A = [[2, 3], [1, 4]], find |A| and A⁻¹.
Compute the determinant.
Solve the system 2x + 3y = 8, x + 2y = 5 using the matrix method.
Write in matrix form AX = B.
For A = [[1, −1, 2], [0, 2, −3], [3, −2, 4]], verify that A · (adj A) = |A|·I and hence find A⁻¹.
Expand |A| along row 1.
⚠️ Traps & Common Mistakes
- 1
Multiplying matrices as if it were commutative: AB = BA
✓In general AB ≠ BA. Order matters. Even the ORDERS may not match if you swap.
- 2
Computing the adjoint by taking the cofactor matrix WITHOUT transposing
✓adj(A) = (cofactor matrix)^T. Cofactor at position (i, j) goes to position (j, i) of the adjoint.
- 3
Writing A⁻¹ = adj(A)/|A| when |A| = 0
✓|A| = 0 means A is SINGULAR — no inverse exists. Check |A| ≠ 0 before dividing.
- 4
Forgetting the (−1)^{i+j} sign pattern in cofactors
✓Cofactor sign chart: + − + / − + − / + − + for a 3×3. A wrong sign flips the whole determinant.
- 5
Using (AB)^{-1} = A^{-1}B^{-1} instead of the reversed order
✓(AB)^{-1} = B^{-1}A^{-1}. Same rule as transpose: order reverses when the operation crosses a product.
- 6
Declaring a system inconsistent whenever |A| = 0
✓|A| = 0 alone is not enough. If (adj A)·B = 0 as well, the system has INFINITELY MANY solutions; if (adj A)·B ≠ 0, it is INCONSISTENT.
🎯 Practice Yourself
- Q1
If A = [[3, 1], [2, 4]], find A⁻¹.
- Q2
Find the value of x for which the matrix [[x, 2], [3, x + 1]] is singular.
- Q3
Solve x + y + z = 6, y + 3z = 11, x + z = 2 using the matrix method.
- Q4
If A is a 3×3 matrix with |A| = 4, find |adj(A)| and |2A|.
- Q5
Show that A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]] satisfy (AB)^T = B^T A^T. Compute (AB)^T.
- Q6
Find k so that [[k, 3], [2, k]] has determinant 2.
📝 Notes
Matrices and Determinants
Chapters 3 and 4 give the algebraic scaffolding for solving linear systems, coordinate transformations, and much of applied maths. A matrix is a table of numbers; a determinant is the signed volume scaling factor of the linear map that the matrix represents.
Reading a matrix problem
- Small dimension (2×2) — direct formulas are quickest.
- 3×3 — cofactor expansion; choose row/column with zeros.
- Bigger — row operations to create zeros first, then expand.
The invertibility ladder
For a square matrix A the following are equivalent:
- A is invertible.
- |A| ≠ 0.
- The homogeneous system AX = 0 has only the trivial solution.
- The rows (and columns) of A are linearly independent.
Any one of these implies all the others.
Solving AX = B
- Write the system in the form AX = B.
- Compute |A|.
- If |A| ≠ 0 — invert A, then X = A⁻¹B. Unique solution.
- If |A| = 0 — compute (adj A)·B. Zero ⇒ infinitely many solutions; non-zero ⇒ inconsistent.
Sanity checks
- Verify A · A⁻¹ = I once you've computed the inverse.
- |A^T| = |A| — same determinant.
- For 3×3, |kA| = k³|A|. Miss the cube and you'll drop marks in a numerical.
🔗 Related chapters
📖 Related study tips
Deep-dive articles to complement this chapter
