Introduction to Matrices and Basic Terminology
From the Engineering Mathematics curriculum
Introduction to Matrices and Basic Terminology
TL;DR
Matrices are rectangular grids of numbers or symbols, useful for organizing data and solving systems of equations. Understanding basic terms like "element," "row," and "column" is crucial for working with them. The order of a matrix tells you its dimensions, like 3x2 (3 rows, 2 columns).
1. The Mental Model
Think of a matrix as a spreadsheet or a table filled with numbers. It's a structured way to keep related pieces of information together in an organized block. Each number has a specific spot, defined by its row and column.
2. The Core Material
Matrices are fundamental in engineering for things like solving complex systems of equations, transforming coordinates in graphics, and analyzing stress in structures. Let's break down the basic jargon you'll encounter.
What is a Matrix?

Photo by Markus Spiske on Pexels
A matrix is simply a rectangular array of numbers, symbols, or expressions arranged in rows and columns. We usually enclose them in large square brackets [ ] or parentheses ( ).
For example, here's a matrix named A:
$$
A = \begin{bmatrix}
3 & 1 \
0 & 5 \
-2 & 7
\end{bmatrix}
$$
Rows and Columns

Photo by Александр Лич on Pexels
- A row is a horizontal line of elements. In matrix
Aabove,[3 1]is the first row. - A column is a vertical line of elements. In matrix
A,[3 0 -2]is the first column.
Elements and Indices

Photo by Markus Spiske on Pexels
Each individual entry in a matrix is called an element. We identify an element by its position, using its row and column number. This is called its index (or indices, plural).
An element at row i and column j is usually denoted as $a_{ij}$ (for matrix A).
For matrix A:
- $a_{11}$ is the element in the 1st row, 1st column, which is 3.
- $a_{21}$ is the element in the 2nd row, 1st column, which is 0.
- $a_{32}$ is the element in the 3rd row, 2nd column, which is 7.
Order of a Matrix

Photo by Google DeepMind on Pexels
The order (or dimensions) of a matrix tells you how many rows and columns it has. It's always written as "rows x columns".
For matrix A above, there are 3 rows and 2 columns. So, its order is 3x2.
Types of Matrices
There are a few special types of matrices worth knowing:
- Row Matrix: Has only one row. Example:
[1 5 -3](order 1x3). - Column Matrix: Has only one column. Example:
[ [2], [0], [7] ](order 3x1). - Square Matrix: Has the same number of rows and columns. Example:
[ [1 2], [3 4] ](order 2x2).
Here's a diagram to help visualize the structure and terms:
graph TD
Matrix["Matrix (Rectangular array of elements)"] --> Rows["Rows (Horizontal lines)"]
Matrix --> Columns["Columns (Vertical lines)"]
Matrix --> Elements["Elements (Individual entries)"]
Elements --> Index["Index (Position: i,j)"]
Matrix --> Order["Order (Dimensions: m x n)"]
Order -- "m = number of rows" --> Rows
Order -- "n = number of columns" --> Columns
Elements -- "a_ij" --> Index
Matrix --> Types["Special Types of Matrices"]
Types --> Square["Square Matrix (m=n)"]
Types --> RowMatrix["Row Matrix (m=1)"]
Types --> ColumnMatrix["Column Matrix (n=1)"]
3. Worked Example
Let's look at this matrix B:
$$
B = \begin{bmatrix}
5 & -1 & 8 \
2 & 4 & 0
\end{bmatrix}
$$
-
Determine the order of matrix B:
- Count the rows: There are 2 horizontal lines of numbers.
- Count the columns: There are 3 vertical lines of numbers.
- So, the order of matrix B is 2x3.
-
Identify specific elements:
- What is $b_{13}$? It's the element in the 1st row, 3rd column, which is 8.
- What is $b_{22}$? It's the element in the 2nd row, 2nd column, which is 4.
4. Key Takeaways
- A matrix is an organized, rectangular grid of numbers or symbols.
- Rows are horizontal; columns are vertical.
- An element is an individual entry, identified by its index ($a_{ij}$ means row $i$, column $j$).
- The order of a matrix is its dimensions, written as "rows x columns" (e.g., 3x2).
- Special matrices include row, column, and square matrices.
Common Mistakes to Avoid:
* Mixing up rows and columns; always remember "Row, then Column" (RC).
* Incorrectly stating the order (e.g., saying 2x3 when it's 3x2).
* Forgetting that a single number is not a matrix unless it's enclosed in brackets.
* Confusing $a_{ij}$ with $a_{ji}$ – the order of indices matters.
5. Now Try It
Given the matrix C:
$$
C = \begin{bmatrix}
-4 & 9 & 1 \
7 & 0 & -2 \
6 & 3 & 5
\end{bmatrix}
$$
- State the order of matrix
C. - Identify the element $c_{21}$.
- Identify the element $c_{13}$.
- Is
Ca square matrix? Why or why not?
What success looks like: You can correctly identify the dimensions, pinpoint any element by its indices, and recognize if it fits a special type of matrix like a square matrix.
Frequently asked about Introduction to Matrices and Basic Terminology
Get the full Engineering Mathematics curriculum
Clone the complete plan to your dashboard for unlimited AI-generated notes, practice quizzes, and a personalised revision schedule.
Create Free Account