Board Formulas

Matrices and Determinants

Matrix algebra, transpose, determinants, minors, cofactors, adjoint, inverse, system of linear equations — NCERT Class 12 Maths Ch 3 & 4

📐 14 formulas✏️ 3 examples🎯 6 practice⚖️ 8-10 marks🏫 CBSE📚 Class 12✓ 2025–26 syllabus
💡

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)

1

Matrix Addition

2

Scalar Multiplication

3

Matrix Multiplication★ Board fav

4

Transpose★ Board fav

5

Determinant of 2×2★ Board fav

6

Determinant of 3×3 (Cofactor Expansion)★ Board fav

7

Product Rule for Determinants

8

Adjoint★ Board fav

9

Fundamental Identity

10

Inverse via Adjoint★ Board fav

11

Matrix Method for Linear System★ Board fav

12

Consistency Criteria

13

Inverse of Transpose and Product

14

Symmetric and Skew-Symmetric

✏️ Solved Examples

1Solved Exampleeasy3 steps

If A = [[2, 3], [1, 4]], find |A| and A⁻¹.

1

Compute the determinant.

2Solved Exampleboard4 steps

Solve the system 2x + 3y = 8, x + 2y = 5 using the matrix method.

1

Write in matrix form AX = B.

3Solved ExampleHOTS5 steps

For A = [[1, −1, 2], [0, 2, −3], [3, −2, 4]], verify that A · (adj A) = |A|·I and hence find A⁻¹.

1

Expand |A| along row 1.

⚠️ Traps & Common Mistakes

⚠️Common Mistakes6
  • 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

🎯Practice Yourself6 questions
  1. Q1

    If A = [[3, 1], [2, 4]], find A⁻¹.

  2. Q2

    Find the value of x for which the matrix [[x, 2], [3, x + 1]] is singular.

  3. Q3

    Solve x + y + z = 6, y + 3z = 11, x + z = 2 using the matrix method.

  4. Q4

    If A is a 3×3 matrix with |A| = 4, find |adj(A)| and |2A|.

  5. Q5

    Show that A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]] satisfy (AB)^T = B^T A^T. Compute (AB)^T.

  6. 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

  1. Write the system in the form AX = B.
  2. Compute |A|.
  3. If |A| ≠ 0 — invert A, then X = A⁻¹B. Unique solution.
  4. 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