What Are Matrices and Determinants — And Why Do They Matter?
Every Class 12 student has a moment where they wonder why matrices exist. Here’s the honest answer: matrices are a compact way to represent and solve systems of equations. Instead of writing three equations with three unknowns scattered across a page, we pack everything into a neat rectangular array and apply rules to it.
Matrices are rectangular arrangements of numbers (or expressions) in rows and columns. Determinants are special scalar values computed from square matrices — they tell us whether a system of equations has a unique solution, and they’re central to finding inverses and eigenvalues.
This chapter carries high weightage in both CBSE Class 12 (typically 10–12 marks) and JEE Main (1–2 questions per paper, often in the 4–8 mark zone). The good news: this is one of the most formula-driven chapters in Class 12 maths. Once the patterns click, the marks follow.
Key Terms and Definitions
Matrix: An ordered rectangular array of numbers enclosed in brackets. A matrix with rows and columns is called an matrix.
Order of a matrix: Always written as rows × columns. Students often swap this — rows come first, always.
Square matrix: Number of rows = number of columns. Determinants are only defined for square matrices.
Diagonal matrix: A square matrix where all non-diagonal elements are zero.
Identity matrix (I): A diagonal matrix with all diagonal elements equal to 1. It behaves like 1 in multiplication: .
Transpose ( or ): Obtained by interchanging rows and columns. If , then .
Symmetric matrix: . Skew-symmetric matrix: (all diagonal elements must be zero).
Singular matrix: A square matrix whose determinant is zero. It has no inverse.
Minor (): The determinant of the submatrix formed by deleting the -th row and -th column.
Cofactor (): . The sign alternates in a checkerboard pattern.
The sign pattern for cofactors in a 3×3 matrix is always:
Memorise this grid — it prevents sign errors in 90% of determinant problems.
Core Concepts and Methods
Matrix Operations
Addition/Subtraction: Add corresponding elements. Matrices must have the same order.
Scalar multiplication: Multiply every element by the scalar. If is scalar: .
Matrix multiplication: For , the inner dimensions must match. The result is .
This means: take the -th row of , the -th column of , multiply element-by-element, and sum up.
Matrix multiplication is not commutative: in general. This trips up students every year in CBSE papers. Always check the order before multiplying.
Computing Determinants
For a 2×2 matrix:
For a 3×3 matrix, expand along any row or column (row 1 is standard):
Pro tip: Always expand along the row or column with the most zeros — it reduces the number of calculations dramatically.
Properties of Determinants
These properties are frequently used to simplify determinants in JEE problems:
- — rows and columns are interchangeable
- Swapping two rows/columns changes the sign of the determinant
- If any two rows/columns are identical,
- Multiplying a row by scalar multiplies the determinant by
- for an matrix
- Adding a multiple of one row to another does not change the determinant
Property 7 (row operations) is the workhorse of JEE determinant problems. When you see a complex 3×3 determinant, apply or similar operations to create zeros, then expand. This appeared in JEE Main 2024 Shift 1 and reduced a six-term expansion to a two-term one.
Inverse of a Matrix
A square matrix has an inverse if and only if .
The adjugate (adj A) is the transpose of the cofactor matrix:
Steps to find :
- Compute . If zero, stop — no inverse exists.
- Find all 9 cofactors .
- Arrange cofactors in a matrix, then take its transpose → this is adj.
- Divide each element of adj by .
Solving Systems Using Matrices (Cramer’s Rule)
For where is :
where is the matrix formed by replacing the -th column of with .
Condition for unique solution:
Condition for no solution or infinite solutions: (then check to distinguish)
Solved Examples
Easy — CBSE Level
Example 1: If , find and .
Step 1: Compute the determinant.
Since , the inverse exists.
Step 2: Find adj. For a 2×2 matrix, swap the diagonal elements and negate the off-diagonal ones:
Step 3: Compute :
Verification: ✓
Medium — JEE Main Level
Example 2: Without expanding, prove that:
Why we use row operations: Adding all three rows gives the same sum for every column — this signals linear dependence.
Apply :
Factor out from :
Now apply and :
After simplification, and become dependent — in fact all three columns share a pattern, and one can show two columns become identical, making the determinant zero.
Hard — JEE Advanced Level
Example 3: If is a matrix with , find and .
Part 1: for matrix.
Part 2: There’s a key result students often forget:
For :
The formula is a direct JEE question — it appeared in JEE Main 2023 Session 2. The companion formula appears at JEE Advanced level. Both are worth memorising cold.
Exam-Specific Tips
CBSE Class 12 Strategy
CBSE papers typically have:
- 1 mark: Order of matrix, type identification
- 2 marks: Transpose, symmetric/skew-symmetric decomposition
- 5 marks: Full inverse calculation or Cramer’s rule system
Marking scheme insight: In 5-mark problems, each step carries 1 mark. Even if your final answer is wrong, you get marks for correctly setting up cofactors. Always show the adj matrix explicitly.
Symmetric decomposition — every matrix can be written as the sum of symmetric and skew-symmetric:
This is a guaranteed 2-mark question in many board papers.
JEE Main Strategy
JEE Main typically asks one MCQ from this chapter worth 4 marks. Common question types:
- Evaluating determinants with parameter and finding values where the system has no/infinite solutions
- Properties of adjugate and inverse
- Equations of the form , finding in terms of
Speed trick for JEE: For when given a Cayley-Hamilton equation like , multiply both sides by :
No cofactor calculation needed — saves 3 minutes per question.
If a JEE problem gives you a relation (Cayley-Hamilton), use it to express algebraically. This trick converts a 5-step calculation into 2 lines.
Common Mistakes to Avoid
Mistake 1: Confusing matrix order. Saying a matrix with 3 columns and 2 rows is a matrix. It’s . Rows × columns, always.
Mistake 2: Wrong cofactor signs. Computing without the sign factor. The checkerboard pattern is non-negotiable. Write it out before starting any 3×3 inverse.
Mistake 3: Forgetting to transpose when finding adj(A). Adj is the transpose of the cofactor matrix. Many students find the cofactor matrix and stop there — losing 2–3 marks in a 5-mark question.
Mistake 4: Applying instead of . Scalar multiplication brings the scalar out once per row (n times total), not once overall. For a matrix, , not .
Mistake 5: Assuming or . Unlike real numbers, matrices can be non-zero with a zero product. Similarly, does not imply unless is invertible.
Practice Questions
Q1 (CBSE 1 mark): If , find the value of .
, so , giving .
Q2 (CBSE 2 marks): Express as the sum of a symmetric and a skew-symmetric matrix.
Symmetric part:
Skew-symmetric part:
Verify: their sum equals ✓
Q3 (CBSE 5 marks): Find if .
Since is upper triangular, product of diagonal . ✓
Computing cofactors:
- , ,
- , ,
- , ,
Q4 (JEE Main style): If is a matrix such that , find .
We know .
So .
Alternatively: .
Q5 (JEE Main style): For what value of does the system , , have no unique solution?
The coefficient matrix .
.
For no unique solution: .
At , rows 2 and 3 of the coefficient matrix are identical, but the RHS is also identical (both 10), so infinite solutions exist here.
Q6 (CBSE 2 marks): If and are symmetric matrices of the same order, show that is skew-symmetric.
Given and .
.
Since , the matrix is skew-symmetric.
Q7 (JEE Advanced style): If , find for positive integer .
Compute: , .
By induction (or pattern recognition): .
This is the standard result for a Jordan block. Prove by induction: if , then ✓
Q8 (CBSE 5 marks): Using matrices, solve: , , .
Write as where , , .
.
Cofactors: , , , , , , , , .
Evaluating: , , .
Verify: ✓, ✓, … recheck signs for : . Actually : ✓. So .
FAQs
What is the difference between a matrix and a determinant?
A matrix is a rectangular array — it’s an object. A determinant is a function that takes a square matrix as input and gives a single number as output. You can’t “find the determinant” of a non-square matrix.
Why is matrix multiplication done row × column instead of element-wise?
Matrix multiplication models the composition of linear transformations. When we apply transformation first and then , the combined effect on any vector is captured by the matrix product . This is the geometric reason behind the row-column rule.
Can a matrix with a zero element have a non-zero determinant?
Absolutely. Zero entries in a matrix say nothing about the determinant — what matters is the whole pattern. In fact, having zeros in a row or column is useful: it makes expansion faster (those terms vanish).
What does it mean when the determinant of a coefficient matrix is zero?
It means the system of equations is either inconsistent (no solution) or dependent (infinite solutions). The three planes represented by the equations are either parallel or intersect along a line. Checking the augmented matrix tells us which case we’re in.
Is a valid notation?
No — has no meaning for matrices. The correct notation is , defined as . This confusion causes students to incorrectly “cancel” matrices in equations.
How many marks does this chapter carry in JEE Main?
Typically 4 marks (one MCQ or numerical). But properties of determinants also support questions in other chapters (probability with matrices, coordinate geometry for collinearity checks). Indirect appearances can push the effective weightage higher.
What is the fastest way to check if a matrix is invertible?
Compute the determinant. If , invertible. For a matrix this is two multiplications and a subtraction — under 10 seconds. For , expansion along the row with most zeros keeps it under a minute.
Do we need to know matrix rank for CBSE Class 12?
Rank is not in the CBSE syllabus at Class 12. It appears in some engineering entrance syllabi and in Class 12 supplementary material. For CBSE and JEE Main, the consistency analysis is done through and Cramer’s rule, not through row reduction to echelon form.