The Matrix Shape Hiding Inside Every Coordinate
Point to any location on a map with an $x$ and a $y$, and you have quietly written a column matrix: two numbers stacked in a single vertical column. Physics stacks force components this way, computer graphics stack a pixel's colour channels this way, and a spreadsheet's single column of values is this exact object. A column matrix is the plainest matrix there is, one column tall, and it is the shape most of applied mathematics actually runs on.
Because it has just one column, everything about a column matrix is easy to state precisely, and that precision is what the rest of this article builds on.
What Is A Column Matrix?
A column matrix is a matrix that has a single column and one or more rows. Every entry sits in that one column, stacked vertically. Because a matrix's order is written as (number of rows) × (number of columns), a column matrix with $n$ rows has order $n \times 1$, read "n by one."
Here are column matrices of order $2 \times 1$, $3 \times 1$, and $n \times 1$:
$$A = \begin{bmatrix} 4 \ 9 \end{bmatrix}, \qquad B = \begin{bmatrix} 3 \ 7 \ -2 \end{bmatrix}, \qquad C = \begin{bmatrix} a_{1} \ a_{2} \ \vdots \ a_{n} \end{bmatrix}.$$
Because it holds a single line of numbers, a column matrix is also called a column vector. The general entry of a column matrix is written $a_{i1}$: the row index $i$ can be any value from 1 to $n$, while the column index is always 1, because there is only one column.
What Is The Order Of A Column Matrix?
The order of a column matrix is always $n \times 1$, where $n$ is the number of rows. The second number is fixed at 1, and that single 1 is what makes the matrix a column matrix.
A matrix of order $5 \times 1$ has five rows and one column, so it holds five entries. In general, the number of entries in a column matrix equals its number of rows, since $n \times 1 = n$. You can review how order is read for any shape in the order of a matrix article.
What Are The Properties Of A Column Matrix?
One column, many rows. By definition the number of columns is 1, while the number of rows can be any positive whole number.
Number of entries equals the number of rows. An $n \times 1$ column matrix holds exactly $n$ elements.
It is a rectangular matrix, not square (unless it is $1 \times 1$). Because rows and columns are unequal for $n > 1$, a column matrix is not a square matrix.
No inverse (for $n > 1$). Only square matrices can have an inverse, so a column matrix of order $n \times 1$ with $n > 1$ has no inverse.
Its transpose is a row matrix. Flipping an $n \times 1$ column matrix across its diagonal gives a $1 \times n$ row matrix.
Add or subtract only with the same order. Two column matrices can be added or subtracted only when both have the same order $n \times 1$.
How Do You Perform Operations With Column Matrices?
Column matrices follow the ordinary rules of matrix algebra, read through their $n \times 1$ shape.
Addition and subtraction. Allowed only between two column matrices of the same order. Add the entries in matching positions.
Scalar multiplication. Multiply every entry by the scalar. The order stays $n \times 1$.
Multiplication by a row matrix. A column matrix of order $n \times 1$ can be multiplied by a row matrix of order $1 \times m$. The rule of matrix multiplication needs the inner dimensions to match: for $A , B$ the columns of $A$ must equal the rows of $B$. So an $n \times 1$ column times a $1 \times m$ row gives an $n \times m$ matrix, while a $1 \times m$ row times an $m \times 1$ column gives a single $1 \times 1$ value.
The rule to hold onto: for any matrix product, the two inner numbers of the orders must match, and the outer two numbers give the order of the result.
What Is The Difference Between A Column Matrix And A Row Matrix?
A column matrix has order $n \times 1$, one column stacked vertically. A row matrix has order $1 \times n$, one row laid out horizontally. They are transposes of each other:
$$\text{column } \begin{bmatrix} 3 \ 7 \ -2 \end{bmatrix} \qquad \longleftrightarrow \qquad \text{row } \begin{bmatrix} 3 & 7 & -2 \end{bmatrix}.$$
Both are single-line matrices and both are called vectors, but the orientation matters the moment you multiply, because $n \times 1$ and $1 \times n$ behave differently in a product.
Where Are Column Matrices Used?
"Stack the numbers that belong together, and the algebra follows."
The column matrix is the default container for a list of related quantities:
Coordinates and vectors. A point or a displacement in space is stored as a column matrix, and transformations act on it by multiplication from the left.
Systems of equations. In the matrix form $A X = B$, both the unknowns $X$ and the constants $B$ are column matrices; solving the system means finding the column matrix $X$.
Computer graphics. A vertex's coordinates ride as a column matrix through rotation, scaling, and translation matrices.
Data and statistics. A single feature measured across records, or a set of readings, is naturally a column of values.
The formal name for the study of these single-column objects is the theory of row and column vectors, and they are the building blocks of linear algebra.
Examples Of Column Matrix
The set runs from identifying a column matrix, through the most common order mistake, to addition, scalar multiplication, a product, and a transpose.
Example 1
Which of these is a column matrix? $$P = \begin{bmatrix} 2 & 5 \ 1 & 3 \end{bmatrix}, \qquad Q = \begin{bmatrix} 6 \ 0 \ 4 \end{bmatrix}, \qquad R = \begin{bmatrix} 8 & 1 & 9 \end{bmatrix}.$$
Check each order. $P$ is $2 \times 2$ (a square matrix), $Q$ is $3 \times 1$ (one column), and $R$ is $1 \times 3$ (one row).
Final answer: $Q$ is the column matrix, since its order is $3 \times 1$.
Example 2
Add the column matrix $\begin{bmatrix} 2 \ 5 \end{bmatrix}$ to the row matrix $\begin{bmatrix} 3 & 4 \end{bmatrix}$.
Wrong attempt. A student sees two entries in each and reasons that both hold the same number of elements, so they add them position by position to get $\begin{bmatrix} 5 \ 9 \end{bmatrix}$.
Where it breaks. Matrix addition compares orders, not counts of entries. The first matrix is $2 \times 1$ and the second is $1 \times 2$. Those orders are not equal, so the sum is not defined at all — matching the entry counts is not enough.
Correct. Addition is allowed only between matrices of the same order. A $2 \times 1$ column matrix can be added only to another $2 \times 1$ column matrix. The two matrices given here cannot be added.
Final answer: the sum is not defined, because $2 \times 1$ and $1 \times 2$ are different orders.
Example 3
Add the two column matrices $\begin{bmatrix} 3 \ 7 \ -2 \end{bmatrix}$ and $\begin{bmatrix} 1 \ -4 \ 5 \end{bmatrix}$.
Both are order $3 \times 1$, so addition is allowed. Add entries in matching rows:
$$\begin{bmatrix} 3 \ 7 \ -2 \end{bmatrix} + \begin{bmatrix} 1 \ -4 \ 5 \end{bmatrix} = \begin{bmatrix} 3+1 \ 7+(-4) \ -2+5 \end{bmatrix} = \begin{bmatrix} 4 \ 3 \ 3 \end{bmatrix}.$$
Final answer: $\begin{bmatrix} 4 \ 3 \ 3 \end{bmatrix}$, again a $3 \times 1$ column matrix.
Example 4
Multiply the column matrix $\begin{bmatrix} 2 \ -1 \ 6 \end{bmatrix}$ by the scalar 3.
Multiply every entry by 3, and the order stays $3 \times 1$:
$$3 \begin{bmatrix} 2 \ -1 \ 6 \end{bmatrix} = \begin{bmatrix} 6 \ -3 \ 18 \end{bmatrix}.$$
Final answer: $\begin{bmatrix} 6 \ -3 \ 18 \end{bmatrix}$.
Example 5
Multiply the column matrix $\begin{bmatrix} 2 \ 5 \end{bmatrix}$ (order $2 \times 1$) by the row matrix $\begin{bmatrix} 4 & 1 & 3 \end{bmatrix}$ (order $1 \times 3$).
The inner numbers match ($1 = 1$), so the product is defined and has order $2 \times 3$. Each entry is a row entry of the column times a column entry of the row:
$$\begin{bmatrix} 2 \ 5 \end{bmatrix}\begin{bmatrix} 4 & 1 & 3 \end{bmatrix} = \begin{bmatrix} (2)(4) & (2)(1) & (2)(3) \ (5)(4) & (5)(1) & (5)(3) \end{bmatrix} = \begin{bmatrix} 8 & 2 & 6 \ 20 & 5 & 15 \end{bmatrix}.$$
Final answer: a $2 \times 3$ matrix, $\begin{bmatrix} 8 & 2 & 6 \ 20 & 5 & 15 \end{bmatrix}$.
Example 6
Find the transpose of the column matrix $\begin{bmatrix} 3 \ 7 \ -2 \end{bmatrix}$.
Transposing turns rows into columns. A $3 \times 1$ column matrix becomes a $1 \times 3$ row matrix:
$$\begin{bmatrix} 3 \ 7 \ -2 \end{bmatrix}^{T} = \begin{bmatrix} 3 & 7 & -2 \end{bmatrix}.$$
Final answer: the row matrix $\begin{bmatrix} 3 & 7 & -2 \end{bmatrix}$. The transpose of a column matrix is always a row matrix.
Common Mistakes
Mistake 1: Matching entry counts instead of orders
Where it slips in: Deciding two matrices can be added because they hold the same number of entries.
Don't do this: Add a $2 \times 1$ column matrix to a $1 \times 2$ row matrix just because each has two numbers.
The correct way: Addition compares the full order, both dimensions, not the entry count. The learner who counts entries and moves on is the one this catches; the reliable habit is to write each matrix's order first and confirm the two orders are identical before adding.
Mistake 2: Confusing a column matrix with a row matrix
Where it slips in: Reading $n \times 1$ and $1 \times n$ as the same thing because both are "just a list."
Don't do this: Treat a column vector and a row vector as interchangeable inside a product.
The correct way: Orientation decides the order, and order decides what multiplication is allowed. An $n \times 1$ column times a $1 \times n$ row gives an $n \times n$ matrix, while the reverse gives a single number. Track which is vertical and which is horizontal.
Mistake 3: Trying to invert a column matrix
Where it slips in: Reaching for an inverse of an $n \times 1$ column matrix with $n > 1$.
Don't do this: Apply the inverse formula to a non-square shape.
The correct way: Only square matrices can have an inverse. A column matrix of order $n \times 1$ (for $n > 1$) is rectangular, so no inverse exists.
Conclusion
A column matrix has one column and any number of rows, giving it order $n \times 1$.
Its number of entries equals its number of rows, and its transpose is a row matrix.
Column matrices add and subtract only with the same order, and multiply with a row matrix by matching inner dimensions.
A column matrix is rectangular for $n > 1$, so it has no inverse.
To build matrix fluency with a teacher, explore Bhanzu's high school math tutor sessions or structured math classes online.
Want a live trainer to walk your child through matrix orders and operations? Book a free demo class.
Read More
Was this article helpful?
Your feedback helps us write better content
