Matrices — Lesson
1) Hook — A Fun Real-Life Example
Imagine you are organizing a cricket tournament in your school with 4 teams: Mumbai, Delhi, Chennai, and Kolkata. Each team plays against every other team once. You want to keep track of the runs scored by each team against the others in a neat table. This is where matrices come to the rescue! By representing the scores in a matrix, you can easily analyze team performances, calculate total runs, and even predict winners using matrix operations.
2) Core Concepts
What is a Matrix?
A matrix is a rectangular array of numbers arranged in rows and columns. It is usually denoted by a capital letter such as A, B, or M.
Notation: An m × n matrix has m rows and n columns. For example, a 2 × 3 matrix looks like:
| a11 | a12 | a13 |
| a21 | a22 | a23 |
Here, aij represents the element in the i-th row and j-th column.
Types of Matrices:
- Row matrix: 1 × n matrix (only one row)
- Column matrix: m × 1 matrix (only one column)
- Square matrix: m × m matrix (same number of rows and columns)
- Zero matrix: All elements are zero
- Diagonal matrix: Square matrix with non-zero elements only on the main diagonal
- Identity matrix (I): Diagonal matrix with 1’s on the diagonal and 0’s elsewhere
Matrix Operations:
| Operation | Description | Example |
|---|---|---|
| Addition | Add corresponding elements of two matrices of same order |
A = \(\begin{bmatrix}1 & 2 \\ 3 & 4\end{bmatrix}\), B = \(\begin{bmatrix}5 & 6 \\ 7 & 8\end{bmatrix}\> A + B = \(\begin{bmatrix}6 & 8 \\ 10 & 12\end{bmatrix}\) |
| Scalar Multiplication | Multiply every element by a scalar (number) | 3 × \(\begin{bmatrix}1 & 0 \\ -1 & 2\end{bmatrix}\) = \(\begin{bmatrix}3 & 0 \\ -3 & 6\end{bmatrix}\) |
| Matrix Multiplication | Multiply rows of first matrix by columns of second matrix (only if orders compatible) | \(\begin{bmatrix}1 & 2\end{bmatrix}\) (1×2) × \(\begin{bmatrix}3 \\ 4\end{bmatrix}\) (2×1) = \(\begin{bmatrix}11\end{bmatrix}\) |
Example: Matrix representation of cricket scores
| Teams | Mumbai | Delhi | Chennai | Kolkata |
|---|---|---|---|---|
| Mumbai | - | 180 | 220 | 195 |
| Delhi | 175 | - | 210 | 190 |
| Chennai | 200 | 205 | - | 185 |
| Kolkata | 190 | 180 | 175 | - |
This matrix helps you quickly see how many runs each team scored against others.
3) Key Formulas / Rules
Matrix Addition: If A = [aij] and B = [bij] are m×n matrices, then
A + B = [aij + bij]
Scalar Multiplication: For scalar k,
kA = [k × aij]
Matrix Multiplication: If A is m×n and B is n×p, then product AB is m×p with elements:
(AB)ij = \(\sum_{k=1}^n a_{ik} b_{kj}\)
Transpose of a Matrix: For matrix A = [aij], transpose AT = [aji]
Identity Matrix (I): Square matrix with 1’s on diagonal, 0’s elsewhere; for any matrix A of order n,
AI = IA = A
4) Did You Know?
Indian mathematician Harish-Chandra made significant contributions to the theory of matrices and representation theory, which are foundational in modern physics and engineering. Also, matrices are used in Bollywood animation studios for 3D modeling and special effects, showing how math powers creativity!
5) Exam Tips
- Check matrix order compatibility before addition or multiplication — this is a common error.
- Remember: Matrix multiplication is not commutative (AB ≠ BA in general).
- Practice calculating transpose carefully; swapping rows and columns is easy to mix up.
- For board exams, expect questions on basic operations, types of matrices, and simple products.
- Previous IB questions often ask you to verify properties like (A + B)T = AT + BT or find AB and BA to show they differ.
- Use clear notation and write intermediate steps to avoid careless mistakes.
Matrices — Mcq
Matrices — Mnemonic
Mnemonic 1: MATRIX for Matrix Properties 📐
- Multiply carefully (Order matters!) 🔢
- Addition is element-wise ➕
- Transpose flips rows & columns 🔄
- Row × Column for product ✔️
- Identity matrix acts like 1️⃣
- X (eXchange) determinant sign flips on row swap ↔️
“Remember MATRIX, boss! Maths ka asli hero!” 😎
Mnemonic 2: Hindi Phrase for Matrix Multiplication Order 🔁
“पहले Row, फिर Column, वरना होगा Problem!” (Pehle Row, phir Column, warna hoga Problem!)
Translation: First Row, then Column, or else you’ll face trouble!
👉 This reminds you that the number of columns in the first matrix must match the number of rows in the second matrix for multiplication.
Mnemonic 3: Funny Acronym for Types of Matrices 😄
- Diagonal - “Dadi ki Diagonal” (Grandma’s diagonal, always special!) 👵
- Identity - “Indian Idol” (Always shining, acts as 1) 🎤
- Zero - “Zero Zero, Zindabad!” (All zeros, no worries) 🥳
- Symmetric - “Samosa Symmetry” (Tastes same on both sides) 🥟
Use “DIZS” to recall common matrix types quickly! 😁
Mission: Master This Topic!
Reinforce what you learned with fun activities
Ready to Battle? Test Your Knowledge!
Practice MCQs, build combos, climb the leaderboard!
Start Practice