A matrix is a rectangular arrangement of numbers, symbols, or figures organized into rows and columns. Think of it like a timetable on your school noticeboard — subjects across the top (columns), days down the side (rows), and each cell holds specific information. The position of each element is what gives it meaning.
In SSC CHSL, matrix questions appear in two flavors:
Number matrices — A grid of numbers where you identify the pattern (row-wise, column-wise, or diagonal) and find the missing term. These are essentially pattern-recognition problems wearing a grid costume.
Conceptual matrix operations — Questions testing whether you know the rules for addition, scalar multiplication, transpose, determinant, trace, and order of matrix multiplication. These are formula-recall questions. If you know the definition, you get the mark. Full stop.
Here is the vocabulary you must own before you touch a matrix question:
ad - bc for [[a, b], [c, d]].The analogy that works best: treat a matrix like a spreadsheet table. Adding two matrices is like merging two spreadsheets cell-by-cell. Multiplying by a scalar is like applying a percentage increase to every cell. Transpose is like rotating the spreadsheet 90 degrees. And the determinant is a single "health number" for the matrix — it captures some essential property of the whole grid in one value.
Most CHSL matrix questions you will see are not asking you to solve complex systems of equations. They are asking: do you know the rule? Apply it. Pick the answer. Move on.
You get a 3×3 (or 2×3) grid with one cell marked ?. Your job is to find the pattern and fill in the blank.
Common patterns to scan for (in this order):
Step-by-step process:
?.Example: [[3, 5, 15], [4, 6, 24], [5, 7, ?]] — Pattern: col1 × col2 = col3. So 5 × 7 = 35.
For matrix multiplication A × B to be valid, the number of columns in A must equal the number of rows in B.
If A is m × n and B is n × p, then AB is m × p.
Look — the inner dimensions (n and n) must match, and they disappear. You're left with the outer dimensions (m × p). This is the rule. Commit it.
| A order | B order | AB possible? | AB order | |---------|---------|--------------|----------| | 3×2 | 2×4 | Yes | 3×4 | | 2×3 | 2×3 | No | — | | 4×1 | 1×5 | Yes | 4×5 |
For [[a, b], [c, d]]:
det = ad - bc
This is the only formula you need for CHSL. The calculation is:
For [[5, 2], [3, 1]]: (5×1) - (2×3) = 5 - 6 = -1.
The answer can be negative. Don't second-guess a negative determinant — it is perfectly valid.
Element-wise addition. Both matrices must have the same order.
A + B = [[a₁₁ + b₁₁, a₁₂ + b₁₂], [a₂₁ + b₂₁, a₂₂ + b₂₂]]
For [[2,4],[6,8]] + [[1,3],[5,7]]: Add position-by-position.
Result: [[3,7],[11,15]]
Multiply every single element by the scalar. No element is exempt.
2 × [[3,1],[2,4]] = [[6,2],[4,8]]
Multiply every element by -1. Positive becomes negative, negative becomes positive.
-[[1,-2],[3,4]] = [[-1,2],[-3,-4]]
Note carefully: -2 becomes +2 (not -2). Students flip this in exam pressure.
Interchange rows and columns. Row 1 becomes Column 1, Row 2 becomes Column 2, and so on.
For a 2×3 matrix [[1,2,3],[4,5,6]], the transpose is a 3×2 matrix:
[[1,4],[2,5],[3,6]]
The order flips: m×n becomes n×m.
Sum of main diagonal elements only — that is, elements where row index = column index (positions (1,1), (2,2), (3,3), ...).
For [[2,5,1],[0,3,7],[4,6,8]]: Diagonal elements are 2, 3, 8. Trace = 2 + 3 + 8 = 13.
The off-diagonal elements are irrelevant. Do not add them.
When multiplying A(m×n) × B(n×p), the result order is the OUTER pair: m×p. The inner pair (n×n) must match (otherwise multiplication is invalid) and then vanishes from the answer. In the exam, write A(3×2) × B(2×4) — circle the outer numbers (3 and 4) — that's your answer: 3×4. Standard approach of writing out compatibility check: 6 steps. This method: 2 steps (circle outers, done).
For [[a,b],[c,d]], draw an X across the matrix. Multiply the downward slash (a×d) and subtract the upward slash (b×c). Visualizing the X prevents the most common error of mixing up which product to subtract from which. For [[5,2],[3,1]]: downward = 5×1 = 5, upward = 2×3 = 6. Answer = 5-6 = -1. Standard formula recall: 20s. Visual X method: 8s.
The element at position (row i, column j) in the original becomes position (row j, column i) in the transpose. Concretely: element at (1st row, 3rd column) moves to (3rd row, 1st column). For a 2×3 matrix, write columns of original as rows of answer — left to right becomes top to bottom. This gives you the transposed matrix without having to track every element individually. Standard element-tracking: 5-7 elements tracked individually. This method: scan columns once, write directly — cuts errors by half.
Before looking at any element in a trace question, physically draw a diagonal line from top-left to bottom-right on your rough work. Only read numbers on that line. Every number off that line is a distractor placed to tempt you into adding it. For a 3×3 matrix, this eliminates 6 out of 9 numbers instantly, leaving exactly 3 to sum. Standard approach (read all 9, pick 3): 12s. Diagonal spotlight (scan 3 directly): 4s.
When finding -A, your biggest risk is a negative element — you must flip its sign to positive. Before writing your answer, scan the original matrix for any negative numbers first. Mentally list them: "row 1 has -2, so in -A that becomes +2." Handle negatives explicitly before dealing with positives. This targeted scan prevents the classic error of writing -(-2) as -2. Standard free-recall: 15s with 30% error rate on negative elements. Targeted negative-scan: 10s with near-zero error rate.
Walk into every matrix question with this decision tree:
Step 1 — Identify question type.
? → Missing term (pattern hunt)Step 2 — For missing-term questions only: Scan Row 1 (fully given). Identify the operation connecting three known values. Verify it on Row 2 or Column 1. Apply to the row/column with ?.
Step 3 — Write the calculation on rough paper. Never do determinants or addition mentally in the exam hall — position errors are silent and costly.
Step 4 — Cross-check with options. If your answer is not among the options, you made a sign error (most likely in determinant) or mixed up a diagonal element. Recalculate once before moving on.
Time target: 40-60 seconds per matrix question.
Why this question: Tests the most fundamental matrix operation — determinant of a 2×2. The negative answer is deliberately placed to trap students who assume determinants are always positive.
Solving path: Apply ad - bc directly. a=5, b=2, c=3, d=1. Calculation: (5×1) - (2×3) = 5 - 6 = -1. The answer is negative — accept it without hesitation.
Why this question: Order of matrix multiplication is a recurring concept. Students who confuse "inner must match" with "that's the answer order" will pick the wrong option.
Solving path: A is 3×2, B is 2×4. Inner dimensions both equal 2 — multiplication is valid. Outer dimensions: 3 and 4. Answer: 3×4. Eliminate options 2×3, 2×4, and 3×2 immediately.
Why this question: Pure formula recall. Knowing ad - bc versus the distractor ac - bd separates prepared candidates from guessers.
Solving path: The determinant formula for [[a,b],[c,d]] is ad - bc. Option B. The other options (ac - bd, ab - cd, a+b+c+d) are all invented distractors — none of them represent any standard matrix operation.
Why this question: Matrix addition looks simple but students under time pressure add wrong pairs of elements or multiply instead of add.
Solving path: Add position-by-position: top-left (2+1=3), top-right (4+3=7), bottom-left (6+5=11), bottom-right (8+7=15). Result: [[3,7],[11,15]]. Option B (which multiplies elements) is the classic trap — it gives [[2,12],[30,56]], which looks plausible if you panic and multiply.
Why this question: Trace is a single-concept question — students who add all 9 elements instead of just the diagonal three will pick the wrong (larger) answer.
Solving path: Diagonal elements are (1,1)=2, (2,2)=3, (3,3)=8. Trace = 2+3+8 = 13. Option A. The sum of all elements = 2+5+1+0+3+7+4+6+8 = 36 — that is option C, placed specifically to catch students who do not know what "trace" means.
Determinant sign error: Calculating bc - ad instead of ad - bc — the subtraction order is fixed. Main diagonal product always comes first. Getting this backwards gives you the negative of the correct answer, and that wrong answer will be sitting in the options as a trap.
Trace = all elements: Adding all 9 (or all 4) elements instead of only the main diagonal ones. The question setters always include the total-sum as a distractor option. The moment you see "trace," mentally draw the diagonal line and only read those cells.
Matrix multiplication order gives wrong dimensions: Writing the inner dimensions as the answer order (e.g., giving 2×2 for A(3×2) × B(2×4)) instead of the outer dimensions (3×4). The inner pair confirms compatibility; the outer pair gives the result order.
Negative of a negative element: In -A questions, a negative element like -2 becomes +2, not -2. Under exam pressure, students flip the sign of positive elements correctly but leave negative elements unchanged. Scan for negatives first.
Transpose order confusion: The order of the transposed matrix is the reverse of the original. A 2×3 matrix becomes a 3×2 matrix after transposition. Students sometimes keep the same order label and only mix up elements, which creates a different type of error.
Scalar multiplication — missing elements: In kA, every element gets multiplied — including elements that are 0 or 1. A zero element stays zero (k×0 = 0), but you must still account for it. Students sometimes skip cells mid-row when doing scalar multiplication quickly, especially in 3×3 grids.