Matrix Operations: Addition & Subtraction

CSEC Mathematics: Working with Matrices

Essential Understanding: A matrix is a rectangular array of numbers arranged in rows and columns. Matrices are powerful tools used in data organization, transformations, and solving systems of equations. Understanding basic matrix operations is essential for CSEC Mathematics.

Key Concept: Order of a Matrix
Key Skill: Matrix Addition
Key Skill: Matrix Subtraction

What is a Matrix?

A matrix is a rectangular arrangement of numbers, symbols, or expressions organized in rows (horizontal) and columns (vertical), enclosed in brackets.

Example of a Matrix

\[A = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix}\]

This matrix has 2 rows and 3 columns

Key Matrix Terminology

m×n

Order of a Matrix

Definition: The order describes the size of a matrix as rows × columns.

Example: A 2×3 matrix has 2 rows and 3 columns.

Note: Always state rows first, then columns!

aᵢⱼ

Elements

Definition: Each number in a matrix is called an element.

Notation: Element in row i, column j is written as \(a_{ij}\)

Example: In matrix A above, \(a_{12} = 2\) (row 1, column 2)

[ ]

Row and Column

Row: A horizontal line of elements (left to right)

Column: A vertical line of elements (top to bottom)

Square Matrix

Definition: A matrix with equal number of rows and columns.

Examples: 2×2, 3×3, 4×4 matrices

Types of Matrices

Type Description Example
Row Matrix Matrix with only one row \(\begin{pmatrix} 1 & 2 & 3 \end{pmatrix}\) (1×3)
Column Matrix Matrix with only one column \(\begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}\) (3×1)
Square Matrix Same number of rows and columns \(\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}\) (2×2)
Zero Matrix All elements are zero \(\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}\)
Identity Matrix (I) Square matrix with 1s on diagonal, 0s elsewhere \(\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}\)

Matrix Addition

Rule for Addition

Matrices can only be added if they have the SAME ORDER (same number of rows and same number of columns).

To add matrices, add the corresponding elements in the same position.

Matrix Addition Formula

\[\begin{pmatrix} a & b \\ c & d \end{pmatrix} + \begin{pmatrix} e & f \\ g & h \end{pmatrix} = \begin{pmatrix} a+e & b+f \\ c+g & d+h \end{pmatrix}\]

Add elements in the same position

Worked Example 1: Adding 2×2 Matrices

Calculate: \(\begin{pmatrix} 3 & 5 \\ 2 & 7 \end{pmatrix} + \begin{pmatrix} 1 & 4 \\ 6 & 3 \end{pmatrix}\)

1
Check: Both matrices are 2×2 ✓ (Addition is possible)
2
Add corresponding elements:
Position (1,1): \(3 + 1 = 4\)
Position (1,2): \(5 + 4 = 9\)
Position (2,1): \(2 + 6 = 8\)
Position (2,2): \(7 + 3 = 10\)

Answer: \(\begin{pmatrix} 3 & 5 \\ 2 & 7 \end{pmatrix} + \begin{pmatrix} 1 & 4 \\ 6 & 3 \end{pmatrix} = \begin{pmatrix} 4 & 9 \\ 8 & 10 \end{pmatrix}\)

Worked Example 2: Adding 3×2 Matrices

Calculate: \(\begin{pmatrix} 1 & 2 \\ 3 & 4 \\ 5 & 6 \end{pmatrix} + \begin{pmatrix} 7 & 8 \\ 9 & 10 \\ 11 & 12 \end{pmatrix}\)

1
Both matrices are 3×2 ✓
2
Add element by element: \[\begin{pmatrix} 1+7 & 2+8 \\ 3+9 & 4+10 \\ 5+11 & 6+12 \end{pmatrix} = \begin{pmatrix} 8 & 10 \\ 12 & 14 \\ 16 & 18 \end{pmatrix}\]

Matrix Subtraction

Matrix Subtraction Formula

\[\begin{pmatrix} a & b \\ c & d \end{pmatrix} - \begin{pmatrix} e & f \\ g & h \end{pmatrix} = \begin{pmatrix} a-e & b-f \\ c-g & d-h \end{pmatrix}\]

Subtract elements in the same position

Worked Example 3: Subtracting Matrices

Calculate: \(\begin{pmatrix} 8 & 6 \\ 4 & 9 \end{pmatrix} - \begin{pmatrix} 3 & 2 \\ 5 & 4 \end{pmatrix}\)

1
Both matrices are 2×2 ✓
2
Subtract corresponding elements:
Position (1,1): \(8 - 3 = 5\)
Position (1,2): \(6 - 2 = 4\)
Position (2,1): \(4 - 5 = -1\)
Position (2,2): \(9 - 4 = 5\)

Answer: \(\begin{pmatrix} 8 & 6 \\ 4 & 9 \end{pmatrix} - \begin{pmatrix} 3 & 2 \\ 5 & 4 \end{pmatrix} = \begin{pmatrix} 5 & 4 \\ -1 & 5 \end{pmatrix}\)

Interactive Matrix Calculator

🔢

Matrix Addition Calculator (2×2)

Enter values in the matrices below and see the result of addition!

Matrix A

+

Matrix B

=

Result (A + B)

4
9
8
10

When Matrices CANNOT Be Added or Subtracted

Important Rule

Matrices of different orders CANNOT be added or subtracted!

Example: Incompatible Matrices

\(\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} + \begin{pmatrix} 5 & 6 & 7 \\ 8 & 9 & 10 \end{pmatrix}\)

This is NOT possible!

Matrix 1 is 2×2, Matrix 2 is 2×3. The orders are different, so they cannot be added.

Properties of Matrix Addition

Property Formula Explanation
Commutative \(A + B = B + A\) Order doesn't matter for addition
Associative \((A + B) + C = A + (B + C)\) Grouping doesn't matter
Identity \(A + O = A\) Adding zero matrix gives original matrix

CSEC Practice Questions

Test Your Understanding

1
What is the order of the matrix \(\begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix}\)?
3 × 2
2 × 3
6
2 × 2
Solution: Count rows first (2 rows), then columns (3 columns). Order = 2 × 3
2
Calculate: \(\begin{pmatrix} 4 & -2 \\ 1 & 5 \end{pmatrix} + \begin{pmatrix} -1 & 3 \\ 2 & -2 \end{pmatrix}\)
\(\begin{pmatrix} 3 & 1 \\ 3 & 3 \end{pmatrix}\)
\(\begin{pmatrix} 5 & 1 \\ 3 & 7 \end{pmatrix}\)
\(\begin{pmatrix} 3 & -5 \\ -1 & 7 \end{pmatrix}\)
\(\begin{pmatrix} -3 & 1 \\ 3 & -3 \end{pmatrix}\)
Solution:
Position (1,1): \(4 + (-1) = 3\)
Position (1,2): \(-2 + 3 = 1\)
Position (2,1): \(1 + 2 = 3\)
Position (2,2): \(5 + (-2) = 3\)
3
Calculate: \(\begin{pmatrix} 10 & 8 \\ 6 & 4 \end{pmatrix} - \begin{pmatrix} 3 & 5 \\ 7 & 9 \end{pmatrix}\)
\(\begin{pmatrix} 13 & 13 \\ 13 & 13 \end{pmatrix}\)
\(\begin{pmatrix} 7 & -3 \\ 1 & 5 \end{pmatrix}\)
\(\begin{pmatrix} 7 & 3 \\ -1 & -5 \end{pmatrix}\)
\(\begin{pmatrix} -7 & -3 \\ 1 & 5 \end{pmatrix}\)
Solution:
Position (1,1): \(10 - 3 = 7\)
Position (1,2): \(8 - 5 = 3\)
Position (2,1): \(6 - 7 = -1\)
Position (2,2): \(4 - 9 = -5\)
4
Which matrix is the 2×2 identity matrix?
\(\begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}\)
\(\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}\)
\(\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}\)
\(\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}\)
Solution: The identity matrix has 1s on the main diagonal (top-left to bottom-right) and 0s everywhere else.
🎯

CSEC Examination Tips

  • Always check the order first! Before adding or subtracting, verify both matrices have the same order.
  • Work systematically: Go position by position (row 1 col 1, row 1 col 2, etc.)
  • Watch your signs: Be careful when subtracting negative numbers.
  • Common mistake: Confusing rows and columns when stating the order. Remember: ROWS × COLUMNS
  • Past paper favorite: Questions often combine addition/subtraction with scalar multiplication (covered in the next topic).
Scroll to Top