Two matrices add or subtract by combining entries in the same position, and this only works when both matrices have the same order (same number of rows and columns). Scalar multiplication multiplies every entry by that number. The zero matrix has every entry 0, and the identity matrix has 1s down the leading diagonal and 0s everywhere else, and both behave like 0 and 1 do in ordinary number arithmetic.
Matrices look intimidating because of the grid of numbers, but addition, subtraction, and scalar multiplication are the simplest operations in the whole topic. Marks go missing for two reasons: adding entries that are not in the same position, and attempting to add or subtract two matrices of different order without checking first. Both mistakes come from rushing past the one check that matters: order.
The order of a matrix is written as rows × columns. A matrix with 2 rows and 3 columns has order 2 × 3. Before you add, subtract, or even compare two matrices, write down each one's order. If the orders do not match exactly, addition and subtraction are undefined and the question is testing whether you notice that.
Addition and subtraction
Same order required. Combine entries in matching positions.
Scalar multiplication
Multiply every entry by the scalar k.
Zero matrix
Every entry is 0. Adding it changes nothing.
Identity matrix
1s on the diagonal, 0s elsewhere. Only square matrices have one.
Given A = [[2, 5], [−1, 3]] and B = [[4, −2], [0, 6]], both order 2 × 2, find A + B and A − B. Each inner bracket is one row, so [[2, 5], [−1, 3]] means row 1 is 2 and 5, row 2 is −1 and 3.
Solution
2 × 2 and B is 2 × 2. They match, so addition and subtraction are both defined.A + B, add each entry to the entry in the same position:A + B = [[2+4, 5+(−2)], [−1+0, 3+6]] = [[6, 3], [−1, 9]]A − B, subtract each entry of B from the matching entry of A:A − B = [[2−4, 5−(−2)], [−1−0, 3−6]] = [[−2, 7], [−1, −3]]Quick check: count the entries. A 2 × 2 matrix has 4 entries, and your answer should also have exactly 4 entries in the same 2 × 2 layout. If the entry count or shape changes, you have made an error.
Given C = [[3, −1, 4], [0, 2, −5]], order 2 × 3, find 3C.
Solution
3C = [[9, −3, 12], [0, 6, −15]]3C is still 2 × 3, the same as C.The step students get wrong
Multiplying only some of the entries, usually stopping after the first row, or forgetting to apply the scalar to a negative entry correctly (for example writing 3 × (−5) = −15 as 15). Every single entry, including negatives, must be multiplied by the scalar. Go entry by entry rather than trying to do it by eye.
These two special matrices behave like their number equivalents. The zero matrix, written O, has every entry equal to 0. Adding O to any matrix of the same order leaves it unchanged, exactly like adding 0 to a number.
The identity matrix, written I, exists only for square matrices (same number of rows and columns). It has 1s running down the leading diagonal (top-left to bottom-right) and 0s everywhere else. The 2 × 2 identity matrix is I = [[1, 0], [0, 1]]. Multiplying any square matrix by I of matching order leaves it unchanged, exactly like multiplying a number by 1. Identity matrices matter most once you reach matrix multiplication, where I is the matrix that "does nothing."
Example: identify the special matrix
[[0, 0], [0, 0]] is the 2 × 2 zero matrix, because every entry is 0.[[1, 0, 0], [0, 1, 0], [0, 0, 1]] is the 3 × 3 identity matrix, because it is square with 1s on the diagonal and 0s elsewhere.[[1, 0], [0, 0]] is neither: it has a 1 on the diagonal but is missing the second 1, so it is just an ordinary matrix, not the identity.O-Level questions often use a matrix simply as a table for real data: quantities of items sold, marks in different subjects, or prices at different shops. A matrix used this way is called a data-handling or information matrix, and the questions usually ask you to combine two such matrices with addition, subtraction, or scalar multiplication rather than anything more advanced. A single-column matrix like this is structurally the same object as a column vector, and once the arithmetic here feels comfortable, the natural next step is using vectors to prove three points are collinear.
Example: combining data matrices
A bakery sells buns and cakes over two days. Monday's sales are M = [[20], [15]] and Tuesday's are T = [[12], [18]], both 2 × 1 column matrices in which the first row is buns and the second row is cakes. Find the total sales over the two days, and the projected sales if the bakery repeats the same two-day pattern for the next 3 weeks.
M + T: buns 20 + 12 = 32, cakes 15 + 18 = 33. So M + T = [[32], [33]].3(M + T) = [[3 × 32], [3 × 33]] = [[96], [99]]. That is 96 buns and 99 cakes.Exam tip: when a question gives you a matrix representing real quantities (sales, marks, distances), label each row or column with what it represents before calculating. This prevents you from mixing up rows once the arithmetic gets busy.
Can I add a 2 × 3 matrix to a 3 × 2 matrix?
No. Matrix addition and subtraction are only defined when both matrices have exactly the same order, meaning the same number of rows and the same number of columns. A 2 × 3 matrix and a 3 × 2 matrix have different orders, so the question is either testing whether you spot this, or there is a typo you should flag.
Does A − B give the same answer as B − A?
No. Unlike addition, subtraction is not commutative: A − B is generally not equal to B − A. In fact B − A gives every entry with the opposite sign of A − B. Always subtract in the sequence the question states. (Note that "order" has a second, technical meaning on this page, rows × columns, so read the question carefully.)
Is the identity matrix always all 1s?
No, this is a common confusion. Only the diagonal entries (top-left to bottom-right) are 1. Every other entry is 0. A matrix of all 1s is a different matrix entirely and does not behave the same way under multiplication.
How is this different from matrix multiplication?
Addition, subtraction, and scalar multiplication combine entries position by position and never require rows to be "matched" against columns. Matrix multiplication is a completely different process with its own compatibility rule. See matrix multiplication once you are comfortable with the basics here.
— Mr Gan Math Tuition
Mr. Gan works with students who want the basics locked in before matrix multiplication gets confusing, not after.
Chat with Mr. Gan