Why do we even need matrices?
Ever wondered how Netflix suggests movies or how a video game renders a 3‑D world? Behind the scenes, rows and columns of numbers – matrices – are crunching the data. In your ISC exam, they’re the same tools, just with a lot less popcorn.
Think of a matrix as a neatly arranged grid of numbers, like a spreadsheet. The determinant is a single number you can pull out of a square matrix that tells you things like whether the matrix can be reversed (like undoing a shuffle of cards). If the determinant is zero, you can’t reverse it.
What is a Matrix?
A matrix (plural: matrices) is a rectangular array of numbers placed in rows (horizontal lines) and columns (vertical lines). For example, a 2 × 3 matrix has 2 rows and 3 columns:
A =
| 1 | 2 | 3 |
| 4 | 5 | 6 |
We write its size as "2 × 3" (read “two by three”). When the number of rows equals the number of columns, we call it a square matrix.
Basic Operations
Addition & Subtraction
You can add or subtract two matrices only if they have the same size. Just add or subtract each matching entry.
Example:
Let B =
| 7 | 8 | 9 |
| 10 | 11 | 12 |
Then A + B =
| 1+7 | 2+8 | 3+9 |
| 4+10 | 5+11 | 6+12 |
| 8 | 10 | 12 |
| 14 | 16 | 18 |
Multiplication
Multiplying matrices isn’t as simple as element‑wise multiplication. The number of columns in the first matrix must equal the number of rows in the second. The entry in row i, column j of the product is the sum of products of corresponding entries from row i of the first matrix and column j of the second.
Example: Multiply C =
| 1 | 2 |
| 3 | 4 |
| 5 | 6 |
| 7 | 8 |
Result CD =
| 1·5+2·7 | 1·6+2·8 |
| 3·5+4·7 | 3·6+4·8 |
| 19 | 22 |
| 43 | 50 |
Understanding the Determinant
The determinant is a special number you can calculate from a square matrix. It tells you if the matrix is invertible (i.e., you can find a matrix that ‘undoes’ its effect). If the determinant is zero, the matrix squishes space into a lower dimension – think of flattening a 3‑D object into a flat sheet.
2 × 2 Determinant – The Quick Formula
For a matrix M =
| a | b |
| c | d |
3 × 3 Determinant – Step‑by‑Step
For a 3 × 3 matrix, you can use the “rule of Sarrus” or co‑factor expansion. The co‑factor method is systematic and works for any size.
Worked Example: 3 × 3 Determinant
Find the determinant of E =
| 2 | 0 | 1 |
| 3 | -1 | 4 |
| 0 | 5 | -2 |
Using the first row:
- Element 2 (position 1,1) → sign + → minor = determinant of
= (-1)(-2) - (4)(5) = 2 - 20 = -18. Contribution: 2 × (-18) = -36.-1 4 5 -2 - Element 0 (position 1,2) → sign – → contribution is 0, so skip.
- Element 1 (position 1,3) → sign + → minor = determinant of
= (3)(5) - (-1)(0) = 15 - 0 = 15. Contribution: 1 × 15 = 15.3 -1 0 5
Adding them: -36 + 15 = -21. So |E| = -21.
Quick Reference Table
| Operation | When you can use it | Result |
|---|---|---|
| Matrix addition | Same dimensions | New matrix of same size |
| Matrix multiplication | Columns of first = rows of second | Rows of first × columns of second |
| 2 × 2 determinant | Any 2 × 2 square matrix | ad − bc |
| 3 × 3 determinant | Any 3 × 3 square matrix | Co‑factor expansion or Sarrus |
Common Mistakes to Avoid
- Adding matrices of different sizes – the calculator will scream.
- Multiplying without checking the inner dimensions – you’ll end up with a mismatched grid.
- Forgetting the alternating sign (+ − + …) when expanding a determinant.
- Assuming a zero determinant means the matrix has all zeros – not true; it just means rows (or columns) are linearly dependent (one row can be made by adding multiples of others).
📝 Likely Exam Questions
- Find the determinant of the matrix \(\begin{bmatrix}1&2&3\\4&5&6\\7&8&9\end{bmatrix}\).
Answer: Using co‑factor expansion, the determinant is 0 because the rows are linearly dependent. - Calculate (A+B)·C where \(A=\begin{bmatrix}1&0\\2&3\end{bmatrix},\; B=\begin{bmatrix}4&5\\6&7\end{bmatrix},\; C=\begin{bmatrix}1&2\\3&4\end{bmatrix}.\)
Answer: A+B = \(\begin{bmatrix}5&5\\8&10\end{bmatrix}\). Multiply with C to get \(\begin{bmatrix}5·1+5·3 & 5·2+5·4\\8·1+10·3 & 8·2+10·4\end{bmatrix}=\begin{bmatrix}20&30\\38&56\end{bmatrix}\). - State whether the matrix \(F=\begin{bmatrix}2&4\\1&2\end{bmatrix}\) is invertible and find its inverse if it exists.
Answer: Determinant = (2)(2)‑(4)(1)=0, so not invertible. - Explain in one sentence why a determinant of zero means the matrix cannot be reversed.
Answer: A zero determinant indicates the transformation squashes space into a lower dimension, losing information needed to undo it.