Introduction to Matrices and Matrix Operations
From the matrices curriculum
Introduction to Matrices and Matrix Operations
TL;DR
Matrices are rectangular grids of numbers that let you organize and manipulate data efficiently, especially for systems of equations or transformations. You'll learn how to create them, understand their basic properties, and perform fundamental operations like addition, subtraction, and scalar multiplication. Mastering these basics is crucial for more advanced matrix concepts.
1. The Mental Model
Think of a matrix as a spreadsheet or a table filled with numbers. Each number has a specific spot defined by its row and column. This structured way of holding numbers makes it easier to work with groups of data all at once.
2. The Core Material
A matrix is just a rectangular arrangement of numbers, symbols, or expressions, organized in rows and columns.
Understanding Matrix Dimensions

Photo by Pachon in Motion on Pexels
The dimension or order of a matrix tells you its size. It's always given as rows x columns. So, a 2x3 matrix has 2 rows and 3 columns. Each individual number in the matrix is called an element or entry. You usually refer to an element by its row and column index, like a_ij, where i is the row number and j is the column number.
Here's an example of a 2x3 matrix:
A = [ 1 2 3 ]
[ 4 5 6 ]
Here, a_11 is 1, a_12 is 2, a_23 is 6, and so on.
Types of Matrices

Photo by İlgar Yusifzade on Pexels
There are a few special types of matrices you should know:
* Row Matrix: A matrix with only one row (e.g., 1x3).
* Column Matrix: A matrix with only one column (e.g., 3x1).
* Square Matrix: A matrix where the number of rows equals the number of columns (e.g., 2x2, 3x3).
* Zero Matrix: A matrix where all elements are zero.
Matrix Addition and Subtraction

Photo by https://kaboompics.com/ on Pexels
You can add or subtract matrices only if they have the exact same dimensions. You do this by adding or subtracting corresponding elements.
Let A and B be two mxn matrices.
C = A + B means c_ij = a_ij + b_ij
D = A - B means d_ij = a_ij - b_ij
Example:
A = [ 1 2 ] B = [ 5 6 ]
[ 3 4 ] [ 7 8 ]
A + B = [ (1+5) (2+6) ] = [ 6 8 ]
[ (3+7) (4+8) ] [ 10 12 ]
Scalar Multiplication

Photo by Shubham Dhage on Pexels
Scalar multiplication involves multiplying every element in a matrix by a single number (a "scalar").
Let A be an mxn matrix and k be a scalar.
B = kA means b_ij = k * a_ij
Example:
A = [ 1 2 ]
[ 3 4 ]
k = 5
5A = [ 5*1 5*2 ] = [ 5 10 ]
[ 5*3 5*4 ] [ 15 20 ]
Here's how these operations fit together conceptually:
graph TD
A["Start (Have Matrices)"] --> B{"Same Dimensions?"}
B -- "No" --> C["Cannot Add/Subtract"]
B -- "Yes" --> D["Choose Operation"]
D -- "Addition" --> E["Add Corresponding Elements"]
D -- "Subtraction" --> F["Subtract Corresponding Elements"]
D -- "Scalar Multiplication" --> G["Multiply ALL Elements by Scalar"]
E --> H["Result: New Matrix (Same Dimension)"]
F --> H
G --> H
H --> I["End"]
3. Worked Example
Let's work through a full example combining addition and scalar multiplication.
Given matrices:
A = [ 2 -1 ]
[ 0 3 ]
B = [ -3 4 ]
[ 1 2 ]
And scalar k = 2.
Calculate 2A - B.
Step 1: Calculate 2A (scalar multiplication)
Multiply each element in matrix A by 2:
2A = [ 2*2 2*(-1) ] = [ 4 -2 ]
[ 2*0 2*3 ] [ 0 6 ]
Step 2: Calculate 2A - B (matrix subtraction)
Now subtract matrix B from the result of 2A. Remember, you subtract corresponding elements:
2A - B = [ (4 - (-3)) (-2 - 4) ]
[ (0 - 1) (6 - 2) ]
= [ (4 + 3) (-6) ]
[ (-1) (4) ]
= [ 7 -6 ]
[ -1 4 ]
So, 2A - B is [ 7 -6 ]
[ -1 4 ].
4. Key Takeaways
- A matrix is a rectangular grid of numbers defined by its rows and columns (its dimensions,
mxn). - Each number in a matrix is an element, identified by its row and column index (
a_ij). - You can only add or subtract matrices if they have the exact same dimensions.
- Matrix addition/subtraction involves performing the operation on corresponding elements.
- Scalar multiplication means multiplying every single element in a matrix by a single number.
- Understanding these basic operations is foundational for all more complex matrix math.
- Common Mistakes:
- Trying to add/subtract matrices with different dimensions – it's not possible!
- Confusing row and column indices (
a_ijvsa_ji). - Forgetting to multiply every element when doing scalar multiplication.
- Making arithmetic errors with negative signs during subtraction.
5. Now Try It
Given the matrices:
X = [ 10 -5 ]
[ 2 8 ]
Y = [ -3 1 ]
[ 7 0 ]
And scalar s = 3.
Calculate sY + X. What do you get?
Success looks like correctly performing the scalar multiplication first, then the matrix addition, and ending with a 2x2 matrix as your answer.
Frequently asked about Introduction to Matrices and Matrix Operations
Study this next
Get the full matrices curriculum
Clone the complete plan to your dashboard for unlimited AI-generated notes, practice quizzes, and a personalised revision schedule.
Create Free Account