Introduction to Matrices and Matrix Operations
This lesson introduces matrices — rectangular arrays of numbers that are used to represent and solve systems of equations, describe geometric transformations, and model a wide range of mathematical and real-world problems. Matrices are a central topic in AQA A-Level Further Mathematics.
What Is a Matrix?
A matrix is a rectangular array of numbers arranged in rows and columns. The order (or size) of a matrix with m rows and n columns is m×n.
A=(142536)
This is a 2×3 matrix (2 rows, 3 columns).
The entry in row i, column j is denoted aij. For the matrix above, a12=2 and a23=6.
Special Matrices
| Matrix type | Description | Example |
|---|
| Square matrix | Same number of rows and columns (n×n) | (1324) |
| Identity matrix I | Square matrix with 1s on the diagonal and 0s elsewhere | (1001) |
| Zero matrix O | All entries are 0 | (0000) |
| Diagonal matrix | Square; non-zero entries only on the main diagonal | (3007) |
| Symmetric matrix | A=AT (entry aij=aji) | (1552) |
| Column vector | n×1 matrix | (3−1) |
| Row vector | 1×n matrix | (25) |
Matrix Addition and Subtraction
Two matrices can be added or subtracted only if they have the same order. The operation is performed element-by-element:
(acbd)+(egfh)=(a+ec+gb+fd+h)
Worked Example: Compute (3−214)+(05−12).
=(3306)
Scalar Multiplication
Multiplying a matrix by a scalar k multiplies every entry by k:
k(acbd)=(kakckbkd)
Example: 3(20−14)=(60−312)
The Transpose
The transpose of a matrix A, written AT, is obtained by swapping rows and columns:
If A=(142536), then AT=123456
Properties:
- (AT)T=A
- (A+B)T=AT+BT
- (kA)T=kAT
- (AB)T=BTAT (note the reversal of order)
Equality of Matrices
Two matrices A and B are equal if and only if:
- They have the same order
- Corresponding entries are equal: aij=bij for all i,j
This is analogous to equating real and imaginary parts of complex numbers — a powerful technique for finding unknowns.
Worked Example: Find x and y if (2xy+135)=(6435).
2x=6⇒x=3; y+1=4⇒y=3.
Properties of Matrix Addition
| Property | Statement |
|---|
| Commutative | A+B=B+A |
| Associative | (A+B)+C=A+(B+C) |
| Additive identity | A+O=A |
| Additive inverse | A+(−A)=O |
Practice Problems
- Given A=(13−20) and B=(4−115), compute A+B, A−B, and 3A.
- Find the transpose of 2−10537.
- Find a and b if (a+132ba−b)=(4360).
Solutions:
- A+B=(52−15), A−B=(−34−3−5), 3A=(39−60)
- (25−1307)
- a+1=4 gives a=3; 2b=6 gives b=3. Check: a−b=0 ✓
Summary
- A matrix is a rectangular array; its order is rows × columns.
- Addition/subtraction: same-order matrices, element by element.
- Scalar multiplication: multiply every entry by the scalar.
- The transpose swaps rows and columns.
- The identity matrix I and zero matrix O play roles analogous to 1 and 0 in ordinary arithmetic.
Exam Tip: State the order of matrices clearly. Matrix operations require compatible dimensions — always check before proceeding.