Matrix notation, addition, subtraction, scalar multiplication, and matrix multiplication.
Matrices organise numbers into rows and columns so that related calculations can be handled together. The position of each entry matters, which is why matrix operations have stricter rules than ordinary arithmetic.
In the CSEC optional Vectors and Matrices question, you may need to add, subtract, multiply, or interpret matrices. Always check dimensions first. This tells you whether the operation is allowed and what size the answer should be.
What is a Matrix?
A matrix is a rectangular array of numbers organized in rows (horizontal) and columns (vertical).
Example 2×3 Matrix (2 rows, 3 columns):
A=(142536)
Notation: We write m×n for m rows and n columns.
Why Matrices?
The point of a matrix is organisation. Instead of writing many separate values, you place them in a structure where position carries meaning.
Matrices are used to organize and manipulate data:
Network Analysis: Connection patterns between nodes
Economic Models: Input-output tables
Matrix Elements
Matrix entries are named by row first, then column. This row-column order is important because reversing it points to a different position.
Elements are referred to by position: aij means row i, column j
For A=(142536):
a11=1 (row 1, column 1)
a12=2 (row 1, column 2)
a23=6 (row 2, column 3)
Special Matrix Types
Special matrices behave like familiar numbers in matrix arithmetic. The zero matrix acts like 0 for addition, and the identity matrix acts like 1 for multiplication.
Square Matrix: Same number of rows and columns
A=(1324)(2×2)
Identity Matrix I: Square matrix with 1s on diagonal, 0s elsewhere
I2=(1001),I3=100010001
Zero Matrix: All elements are 0
O=(0000)
Matrix Addition and Subtraction
Rules
Addition and subtraction are position-by-position operations. This is why the matrices must have the same dimensions.
Can only add/subtract matrices of the same dimensions (m×n)
Addition: Add corresponding elements
(acbd)+(egfh)=(a+ec+gb+fd+h)
Subtraction: Subtract corresponding elements
(acbd)−(egfh)=(a−ec−gb−fd−h)
Examples
Example
(5234)+(13−12)=(5+12+33+(−1)4+2)=(6526)
Example
(7249)−(3115)=(7−32−14−19−5)=(4134)
Remember
You can only add or subtract matrices with same dimensions. A 2×3 matrix cannot be added to a 3×3 matrix.
Scalar Multiplication of Matrices
Definition
Scalar multiplication changes the size of every entry by the same factor. It does not change the dimensions of the matrix.
Multiply every element by the scalar
k(acbd)=(kakckbkd)
Examples
Example
3(2415)=(612315)
Example
−2(3214)=(−6−4−2−8)
Properties
Associative:(rs)A=r(sA)
Distributive:r(A+B)=rA+rB
Distributive:(r+s)A=rA+sA
Matrix Multiplication
Why Matrix Multiplication is Different
Matrix multiplication combines rows from the first matrix with columns from the second. Because rows and columns play different roles, changing the order can change the result.
Key Idea: Matrix multiplication is NOT element-by-element. It represents combining transformations or composing operations.
Rule: Can only multiply if: (columns of first matrix) = (rows of second matrix)
(m×n)×(n×p)=(m×p)
How to Multiply: Step-by-Step
Work systematically across the answer matrix. Each blank entry has its own row-column calculation, so label positions if the matrix is large.
For matrices A and B to get product AB:
Each element in the product = (row of A) · (column of B)
ABij=(row i of A)⋅(column j of B)
2×2 × 2×2 matrix multiplication: row · column
2×2 Matrix Multiplication Example
(1324)×(5768)=?
Position (1,1): (Row 1 of first) · (Column 1 of second)
=1(5)+2(7)=5+14=19
Position (1,2): (Row 1 of first) · (Column 2 of second)
=1(6)+2(8)=6+16=22
Position (2,1): (Row 2 of first) · (Column 1 of second)
=3(5)+4(7)=15+28=43
Position (2,2): (Row 2 of first) · (Column 2 of second)
=3(6)+4(8)=18+32=50
(1324)×(5768)=(19432250)
Remember
Matrix multiplication is NOT commutative: AB=BA. Order matters!
2×3 times 3×2 Example
(142536)×791181012=(????)
Result is 2×2:
Position (1,1): 1(7)+2(9)+3(11)=7+18+33=58
Position (1,2): 1(8)+2(10)+3(12)=8+20+36=64
Position (2,1): 4(7)+5(9)+6(11)=28+45+66=139
Position (2,2): 4(8)+5(10)+6(12)=32+50+72=154
=(5813964154)
Exam Tip
Always check dimensions first:
Can I multiply? (columns of first = rows of second)
What size is result? (rows of first × columns of second)
Multiply systematically (row × column for each position)
Multiplying Matrix by Column Vector
Multiplying a matrix by a column vector is how transformations act on points. The input point goes in as a vector, and the output vector gives the transformed point.
Key Use: Transform a point or apply an operation
(acbd)(xy)=(ax+bycx+dy)
Example
Rotation of point (1,2) by 90° counterclockwise uses matrix (01−10):
(01−10)(12)=(0(1)+(−1)(2)1(1)+0(2))=(−21)
Point (1,2) rotated 90° becomes (−2,1).
Determinants
What is a Determinant?
For a 2×2 matrix, the determinant is a single number that tells whether the matrix can be reversed. A determinant of zero means information has collapsed and no inverse exists.
The determinant of a square matrix is a special number that: