Vardaan Learning Institute
ICSE Class 10 Mathematics • Chapter Notes
Chapter 9: Matrices
Matrices are rectangular arrays of numbers arranged in rows and columns. They are a powerful mathematical tool used to organise data, solve systems of equations, and are the backbone of computer graphics and data science. For ICSE Class 10, you must master the definition, types, and all four operations on matrices.
1. Introduction to Matrices
What is a Matrix?
A matrix is an ordered rectangular array of numbers (called elements or entries) arranged in horizontal rows and vertical columns, enclosed in square brackets [ ].
A matrix is usually denoted by a capital letter (A, B, C…). Each element is denoted by $a_{ij}$ where $i$ = row number and $j$ = column number.
Definition
A matrix $A$ with $m$ rows and $n$ columns is written as $A = [a_{ij}]_{m \times n}$ and is said to have order $m \times n$ (read as "m by n").
$$A = \begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{bmatrix}$$
- Total number of elements in a matrix of order $m \times n$ = $m \times n$
- The element in the $i$-th row and $j$-th column is $a_{ij}$
- Example: $a_{23}$ means the element in row 2, column 3
Example of a Matrix
Consider: $A = \begin{bmatrix} 3 & -1 & 0 \\ 5 & 2 & 7 \end{bmatrix}$
- Order of A = $2 \times 3$ (2 rows, 3 columns)
- $a_{11} = 3$, $a_{12} = -1$, $a_{13} = 0$
- $a_{21} = 5$, $a_{22} = 2$, $a_{23} = 7$
- Total elements = $2 \times 3 = 6$
2. Types of Matrices
| Type | Definition | Example |
| Row Matrix | Only ONE row; order $1 \times n$ | $\begin{bmatrix}2 & -3 & 5\end{bmatrix}$ — order $1 \times 3$ |
| Column Matrix | Only ONE column; order $m \times 1$ | $\begin{bmatrix}4 \\ -1 \\ 0\end{bmatrix}$ — order $3 \times 1$ |
| Square Matrix | Number of rows = Number of columns; order $n \times n$ | $\begin{bmatrix}1 & 2 \\ 3 & 4\end{bmatrix}$ — order $2 \times 2$ |
| Zero (Null) Matrix | Every element is 0; denoted by $O$ | $\begin{bmatrix}0 & 0 \\ 0 & 0\end{bmatrix}$ — zero matrix of order $2 \times 2$ |
| Identity (Unit) Matrix | Square matrix with 1s on main diagonal and 0s elsewhere; denoted $I$ | $\begin{bmatrix}1 & 0 \\ 0 & 1\end{bmatrix}$, $\begin{bmatrix}1&0&0\\0&1&0\\0&0&1\end{bmatrix}$ |
| Diagonal Matrix | Square matrix with non-zero elements only on the main diagonal | $\begin{bmatrix}3 & 0 \\ 0 & -5\end{bmatrix}$ |
Key Points to Remember
- The main (principal) diagonal of a square matrix of order $n \times n$ consists of elements $a_{11}, a_{22}, a_{33}, \ldots, a_{nn}$ (where row index = column index).
- Every Identity Matrix is a Diagonal Matrix, but not vice versa.
- Every Identity Matrix and Zero Matrix is also a Square Matrix (when applicable).
- A $1 \times 1$ matrix $[k]$ is both a row matrix and a column matrix.
Practice Problems — Types of Matrices
Q1. State the order of the following matrices and identify their type:
(a) $A = \begin{bmatrix}5 & -2 & 0 & 1\end{bmatrix}$ (b) $B = \begin{bmatrix}3\\7\\-1\end{bmatrix}$ (c) $C = \begin{bmatrix}2&0\\0&-3\end{bmatrix}$ (d) $D = \begin{bmatrix}1&0&0\\0&1&0\\0&0&1\end{bmatrix}$
Answers:
(a) Order $1 \times 4$ — Row Matrix
(b) Order $3 \times 1$ — Column Matrix
(c) Order $2 \times 2$ — Square Matrix and Diagonal Matrix
(d) Order $3 \times 3$ — Identity (Unit) Matrix
Q2. For matrix $A = \begin{bmatrix}4 & -1 & 0 \\ 3 & 7 & -2 \\ 1 & 5 & 8\end{bmatrix}$, find: (a) $a_{12}$, (b) $a_{31}$, (c) $a_{23}$, (d) $a_{22}$
Answers: (a) $a_{12} = -1$ (b) $a_{31} = 1$ (c) $a_{23} = -2$ (d) $a_{22} = 7$
Q3. Construct a $2 \times 3$ matrix $A = [a_{ij}]$ where each element is defined by $a_{ij} = 2i + j$.
Solution:
$a_{11}=2(1)+1=3$, $a_{12}=2(1)+2=4$, $a_{13}=2(1)+3=5$
$a_{21}=2(2)+1=5$, $a_{22}=2(2)+2=6$, $a_{23}=2(2)+3=7$
$$A = \begin{bmatrix}3&4&5\\5&6&7\end{bmatrix}$$
3. Equality of Matrices
Definition: Equal Matrices
Two matrices $A$ and $B$ are equal (written $A = B$) if and only if:
- They have the same order, AND
- Every corresponding element is equal: $a_{ij} = b_{ij}$ for all $i$ and $j$.
Worked Example — Using Equality to Find Unknown Values
If $\begin{bmatrix}x+2 & y-1 \\ 3 & 2z\end{bmatrix} = \begin{bmatrix}5 & 4 \\ 3 & 14\end{bmatrix}$, find $x$, $y$, $z$.
Solution: Since the matrices are equal, all corresponding elements are equal:
- $x + 2 = 5 \Rightarrow x = 3$
- $y - 1 = 4 \Rightarrow y = 5$
- $2z = 14 \Rightarrow z = 7$
Practice Problems — Equality of Matrices
Q1. Find $a, b, c, d$ if $\begin{bmatrix}a+b & 2c \\ d-3 & a-b\end{bmatrix} = \begin{bmatrix}7 & 10 \\ 1 & 1\end{bmatrix}$
Solution:
$a+b=7$ … (i) $2c=10 \Rightarrow c=5$
$d-3=1 \Rightarrow d=4$ $a-b=1$ … (ii)
Adding (i)+(ii): $2a=8 \Rightarrow a=4$; From (i): $b=3$
∴ a=4, b=3, c=5, d=4
Q2. If $\begin{bmatrix}x^2 & y \\ 4 & x+y\end{bmatrix} = \begin{bmatrix}9 & 3 \\ 4 & 6\end{bmatrix}$, find $x$ and $y$.
Solution:
$x^2=9 \Rightarrow x=3$ or $x=-3$ $y=3$ $x+y=6 \Rightarrow x=3$
∴ x = 3, y = 3
Q3. Find $p, q, r, s$ if $\begin{bmatrix}p+q & p-q \\ 2r & r+s\end{bmatrix} = \begin{bmatrix}8 & 2 \\ 6 & 5\end{bmatrix}$
Solution:
$p+q=8$, $p-q=2$ → Adding: $2p=10$, $p=5$, $q=3$
$2r=6 \Rightarrow r=3$ $r+s=5 \Rightarrow s=2$
∴ p=5, q=3, r=3, s=2
4. Addition and Subtraction of Matrices
Rule
Two matrices can be added or subtracted only if they have the same order. The result is obtained by adding/subtracting the corresponding elements.
If $A = [a_{ij}]_{m\times n}$ and $B = [b_{ij}]_{m\times n}$, then:
$$A + B = [a_{ij} + b_{ij}]_{m\times n} \qquad A - B = [a_{ij} - b_{ij}]_{m\times n}$$
Properties of Matrix Addition
- Commutative: $A + B = B + A$
- Associative: $(A + B) + C = A + (B + C)$
- Additive Identity: $A + O = A$ (where $O$ is the zero matrix of same order)
- Additive Inverse: $A + (-A) = O$ (where $-A$ means each element negated)
Worked Example
If $A = \begin{bmatrix}2 & -1 \\ 3 & 0\end{bmatrix}$ and $B = \begin{bmatrix}1 & 4 \\ -2 & 5\end{bmatrix}$, find $A+B$ and $A-B$.
$A + B$ $= \begin{bmatrix}2+1 & -1+4 \\ 3+(-2) & 0+5\end{bmatrix} = \begin{bmatrix}3 & 3 \\ 1 & 5\end{bmatrix}$
$A - B$ $= \begin{bmatrix}2-1 & -1-4 \\ 3-(-2) & 0-5\end{bmatrix} = \begin{bmatrix}1 & -5 \\ 5 & -5\end{bmatrix}$
Practice Problems — Addition & Subtraction
Q1. If $A = \begin{bmatrix}3 & 1 \\ -1 & 2\end{bmatrix}$, $B = \begin{bmatrix}-1 & 3 \\ 4 & -2\end{bmatrix}$, find $2A + 3B$.
Solution:
$2A = \begin{bmatrix}6&2\\-2&4\end{bmatrix}$, $3B = \begin{bmatrix}-3&9\\12&-6\end{bmatrix}$
$2A+3B = \begin{bmatrix}6-3 & 2+9\\-2+12 & 4-6\end{bmatrix} = \begin{bmatrix}3&11\\10&-2\end{bmatrix}$
Q2. Find matrix $X$ if $2X + \begin{bmatrix}1&2\\3&4\end{bmatrix} = \begin{bmatrix}7&8\\9&10\end{bmatrix}$.
Solution:
$2X = \begin{bmatrix}7-1&8-2\\9-3&10-4\end{bmatrix} = \begin{bmatrix}6&6\\6&6\end{bmatrix}$
$X = \begin{bmatrix}3&3\\3&3\end{bmatrix}$
Q3. If $A + B = \begin{bmatrix}5&6\\8&2\end{bmatrix}$ and $A - B = \begin{bmatrix}1&2\\4&0\end{bmatrix}$, find matrices $A$ and $B$.
Solution:
Adding: $2A = \begin{bmatrix}6&8\\12&2\end{bmatrix} \Rightarrow A = \begin{bmatrix}3&4\\6&1\end{bmatrix}$
Subtracting: $2B = \begin{bmatrix}4&4\\4&2\end{bmatrix} \Rightarrow B = \begin{bmatrix}2&2\\2&1\end{bmatrix}$
Q4. If $A = \begin{bmatrix}1&-1\\2&3\end{bmatrix}$, $B = \begin{bmatrix}-1&0\\1&-2\end{bmatrix}$ and $C = \begin{bmatrix}3&2\\-1&0\end{bmatrix}$, find $A - B + C$.
Solution:
$A-B = \begin{bmatrix}2&-1\\1&5\end{bmatrix}$
$(A-B)+C = \begin{bmatrix}2+3&-1+2\\1-1&5+0\end{bmatrix} = \begin{bmatrix}5&1\\0&5\end{bmatrix}$
5. Scalar Multiplication
Rule: Scalar Multiplication
To multiply a matrix $A$ by a scalar (real number) $k$, multiply every element of the matrix by $k$.
$$kA = k[a_{ij}]_{m\times n} = [k \cdot a_{ij}]_{m\times n}$$
Properties of Scalar Multiplication
- $k(A + B) = kA + kB$
- $(k + l)A = kA + lA$
- $(kl)A = k(lA)$
- $1 \cdot A = A$ and $0 \cdot A = O$ (zero matrix)
Worked Example
If $A = \begin{bmatrix}4 & -2 \\ 6 & 0\end{bmatrix}$, find $3A$ and $-2A$.
$3A = \begin{bmatrix}12 & -6 \\ 18 & 0\end{bmatrix}$ $-2A = \begin{bmatrix}-8 & 4 \\ -12 & 0\end{bmatrix}$
Practice Problems — Scalar Multiplication
Q1. If $A = \begin{bmatrix}2&-1\\0&3\end{bmatrix}$ and $B = \begin{bmatrix}1&0\\4&-2\end{bmatrix}$, find $3A - 2B$.
Solution:
$3A = \begin{bmatrix}6&-3\\0&9\end{bmatrix}$, $2B = \begin{bmatrix}2&0\\8&-4\end{bmatrix}$
$3A-2B = \begin{bmatrix}4&-3\\-8&13\end{bmatrix}$
Q2. Find matrix $X$ such that $5X - \begin{bmatrix}10&15\\-5&20\end{bmatrix} = \begin{bmatrix}0&0\\0&0\end{bmatrix}$.
Solution:
$5X = \begin{bmatrix}10&15\\-5&20\end{bmatrix} \Rightarrow X = \begin{bmatrix}2&3\\-1&4\end{bmatrix}$
6. Matrix Multiplication
Condition for Multiplication
Matrix $A$ (of order $m \times n$) can be multiplied by matrix $B$ (of order $n \times p$) only if the number of columns of A equals the number of rows of B.
The resulting product $AB$ will have order $m \times p$.
$$\underbrace{A}_{m \times n} \times \underbrace{B}_{n \times p} = \underbrace{AB}_{m \times p}$$
Memory Aid: $(m \times \mathbf{n}) \times (\mathbf{n} \times p) = m \times p$ — the inner dimensions must match.
How to Multiply — The Dot Product Method
Each element $c_{ij}$ of the product $AB$ is computed as the dot product of row $i$ of $A$ with column $j$ of $B$:
$$c_{ij} = \sum_{k=1}^{n} a_{ik} \cdot b_{kj} = a_{i1}b_{1j} + a_{i2}b_{2j} + \cdots + a_{in}b_{nj}$$
Worked Example 1 — $2 \times 2$ matrices
$A = \begin{bmatrix}1&2\\3&4\end{bmatrix}$, $B = \begin{bmatrix}5&6\\7&8\end{bmatrix}$. Find $AB$.
$c_{11} = (1)(5)+(2)(7) = 5+14 = 19$
$c_{12} = (1)(6)+(2)(8) = 6+16 = 22$
$c_{21} = (3)(5)+(4)(7) = 15+28 = 43$
$c_{22} = (3)(6)+(4)(8) = 18+32 = 50$
$$AB = \begin{bmatrix}19&22\\43&50\end{bmatrix}$$
Practice Problems — Matrix Multiplication
Q1. Find $AB$ and $BA$ if $A = \begin{bmatrix}1&2\\3&4\end{bmatrix}$ and $B = \begin{bmatrix}0&1\\1&0\end{bmatrix}$. Verify $AB \neq BA$.
Solution:
$AB = \begin{bmatrix}0+2&1+0\\0+4&3+0\end{bmatrix} = \begin{bmatrix}2&1\\4&3\end{bmatrix}$
$BA = \begin{bmatrix}0+3&0+4\\1+0&2+0\end{bmatrix} = \begin{bmatrix}3&4\\1&2\end{bmatrix}$
Since $AB \neq BA$, matrix multiplication is not commutative.
Q2. If $A = \begin{bmatrix}2&1\\1&3\end{bmatrix}$, find $A^2$ (i.e., $A \times A$).
Solution:
$A^2 = \begin{bmatrix}2&1\\1&3\end{bmatrix}\begin{bmatrix}2&1\\1&3\end{bmatrix} = \begin{bmatrix}4+1&2+3\\2+3&1+9\end{bmatrix} = \begin{bmatrix}5&5\\5&10\end{bmatrix}$
7. Transpose of a Matrix
Definition: Transpose
The transpose of a matrix $A$, denoted by $A^T$ (or $A'$), is obtained by interchanging its rows and columns.
If $A = [a_{ij}]_{m\times n}$, then $A^T = [a_{ji}]_{n\times m}$.