Matrices — Lesson
1) Hook — A Fun Real-Life Example
Imagine you are the manager of a cricket team in the Tamil Nadu Premier League. You want to keep track of runs scored by 3 players in 3 different matches. Instead of writing long notes, you use a matrix to organise the data neatly:
| Players \ Matches | Match 1 | Match 2 | Match 3 |
|---|---|---|---|
| Player A | 45 | 30 | 60 |
| Player B | 50 | 40 | 55 |
| Player C | 20 | 35 | 40 |
This table is a matrix — a rectangular array of numbers arranged in rows and columns. Matrices help us organise and work with data efficiently.
2) Core Concepts — Understanding Matrices
Definition: A matrix is a rectangular array of numbers arranged in rows and columns enclosed within brackets.
Notation: A matrix with m rows and n columns is called an m × n matrix.
Example of a 2 × 3 matrix:
| 1 | 0 | 2 |
| -1 | 3 | 1 |
Elements of a matrix: Each number in the matrix is called an element. The element in the ith row and jth column is denoted by aij.
For the above matrix, a21 = -1 (2nd row, 1st column).
Types of Matrices
- Row matrix: Only one row (e.g., 1 × n matrix)
- Column matrix: Only one column (e.g., m × 1 matrix)
- Square matrix: Number of rows = number of columns (e.g., 3 × 3)
- Zero matrix: All elements are zero
- Diagonal matrix: Square matrix with non-zero elements only on the main diagonal
- Identity matrix: Diagonal matrix with 1’s on the main diagonal and 0’s elsewhere
Matrix Operations with Examples
Addition: Two matrices of the same order can be added by adding corresponding elements.
| 1 | 2 |
| 3 | 4 |
+
| 5 | 6 |
| 7 | 8 |
=
| 6 | 8 |
| 10 | 12 |
Scalar multiplication: Multiply every element by the scalar (number).
Example: 3 ×
| 2 | -1 |
| 0 | 4 |
| 6 | -3 |
| 0 | 12 |
Matrix multiplication: Possible only when the number of columns of the first matrix equals the number of rows of the second matrix.
Example:
| 1 | 2 | 3 |
| 4 | 5 | 6 |
| 7 | 8 |
| 9 | 10 |
| 11 | 12 |
=
| 58 | 64 |
| 139 | 154 |
How to calculate element (1,1): (1×7) + (2×9) + (3×11) = 7 + 18 + 33 = 58
3) Key Formulas / Rules
Matrix Addition:
If A = [aij] and B = [bij] are matrices of same order, then
A + B = [aij + bij]
Scalar Multiplication:
kA = [k × aij]
Matrix Multiplication:
If A is m × n and B is n × p, then AB is m × p matrix with elements
(AB)ij = ∑k=1 to n aik × bkj
Order of Resultant Matrix:
m × p (from multiplying m × n and n × p matrices)
4) Did You Know?
Mathematics in Ancient India used matrices! The famous Indian mathematician Pingala (around 200 BCE) used a form of matrices to describe patterns in Sanskrit poetry. Today, matrices are essential in computer graphics, cryptography, and even Google’s search algorithms!
5) Exam Tips
- Always check the order of matrices before addition or multiplication. Addition requires same order; multiplication requires compatible orders.
- Remember matrix multiplication is not commutative: AB ≠ BA in general.
- Write steps clearly: Show element-wise calculations to avoid careless mistakes.
- Practice common board question types: matrix addition, scalar multiplication, and multiplication of 2×2 or 2×3 with 3×2 matrices.
- Use mnemonics: For multiplication, remember “Row by Column” — multiply row elements of first matrix with column elements of second matrix.
Matrices — Mcq
Matrices — Mnemonic
Mnemonic 1: MATRIX Types Made Easy! 📐
"**S**illy **Z**ebras **I**n **D**elhi **S**ing" 🦓🎤
- S - Square Matrix (rows = columns)
- Z - Zero Matrix (all elements zero)
- I - Identity Matrix (1's on diagonal, 0 elsewhere)
- D - Diagonal Matrix (non-diagonal elements zero)
- S - Symmetric Matrix (A = AT)
Hindi Hint: "Sahi Zameen Pe Idhar Diya Sambhal" – याद रखो, ये हैं मैट्रिक्स के प्रकार!
Mnemonic 2: Matrix Multiplication Rule 🔢
"Rows of A, Columns of B, Match them right, product you'll see!"
- Matrix A of order m × n
- Matrix B of order n × p
- Product AB is defined and of order m × p
Hindi Trick: "A की पंक्तियाँ, B के स्तंभ, बराबर हों तभी बने संगम!"
Mnemonic 3: Remember Matrix Elements Position 📍
"Row first, then column, Aij is the sum!"
- Aij means element in ith row and jth column
- Example: A23 = element in 2nd row, 3rd column
Funny Hindi Rhyme: "पहली पंक्ति, फिर कॉलम देखो, Aij में जवाब पाओ!" 😄
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