Column Vector

A column vector is a matrix with one column and several rows. In Linear Algebra and Differential Equations, you use it to represent coordinates, variables in a system, or a direction that a matrix can transform.

Last updated July 2026

What is Column Vector?

A column vector is a single-column matrix, usually written vertically, such as (v1v2vn)\begin{pmatrix}v_1\\v_2\\\vdots\\v_n\end{pmatrix}. In this course, that vertical layout is not just a formatting choice. It is the standard way to package numbers so they can be added, scaled, and multiplied by matrices in a clean, consistent way.

If you have a vector in R2\mathbb{R}^2 or R3\mathbb{R}^3, the column form lets you treat it like a point or direction in space. For example, (21)\begin{pmatrix}2\\-1\end{pmatrix} can represent a point on a plane, a displacement from the origin, or a variable list in a linear system. The meaning depends on the problem, but the structure stays the same: one entry per component.

This matters because matrix multiplication is built around column vectors. When a matrix multiplies a column vector, each row of the matrix forms a new linear combination of the vector’s entries. That is why matrices can model transformations like stretching, rotating, or shearing. The output is usually another column vector, so the shape stays compatible with later steps in a calculation.

Column vectors also show up when you write systems of linear equations in matrix form. Instead of writing separate equations, you can group the unknowns into a vector and solve the system through row operations. In Gaussian elimination, for instance, the augmented matrix stores the coefficients next to the constants, and the column-vector viewpoint helps you track what each entry represents.

A common mistake is to treat a row vector and a column vector as interchangeable. They contain the same numbers, but their orientation changes how multiplication works. A column vector fits on the right side of a matrix product, while a row vector usually fits on the left. That difference is small on the page, but it controls whether the dimensions line up and whether the operation is even allowed.

Why Column Vector matters in Linear Algebra and Differential Equations

Column vectors are the version of vectors you use most often when turning algebra into matrix calculations. They let you write a system like Ax=bAx=b, where xx is the unknown column vector and bb is the output column vector. That compact notation is the backbone of solving systems, checking whether a system is consistent, and describing transformations.

They also make linear combinations easier to see. If a matrix’s columns are themselves vectors, then multiplying by a column vector tells you how to combine those columns with certain weights. That idea connects directly to span, linear independence, and the geometry of a solution space.

In differential equations, column vectors come back when you study systems of equations. A system can be written as a vector equation so you can follow how multiple variables change together. Once you start working with matrices of coefficients, eigenvectors, and solution methods for systems, the column-vector setup keeps the notation organized and the algebra manageable.

Keep studying Linear Algebra and Differential Equations Unit 1

How Column Vector connects across the course

Matrix

A column vector is a special kind of matrix with exactly one column. That means it follows the same size rules as other matrices, which is why matrix multiplication can act on it. When you write vectors as columns, you can place them directly into matrix equations like Ax=bAx=b or use them to describe linear transformations.

Linear Combination

Column vectors are the pieces you combine in a linear combination. If you multiply each vector by a scalar and add the results, you are forming a new vector from old ones. This is the idea behind columns of a matrix, where the weights in a column vector tell you how to mix the matrix’s columns.

augmented matrix

An augmented matrix usually contains the coefficient columns from a system and the constants in one combined setup. The unknowns in the system are often thought of as a column vector, so row reduction is really working toward a solution vector. Reading the matrix this way helps you see what each row operation is doing to the system.

Back Substitution

After Gaussian elimination turns a system into upper triangular form, back substitution finds the entries of the solution column vector from the bottom up. Each solved value gets plugged into the equations above it. Thinking in terms of a column vector keeps the answer organized, especially when there are several variables.

Is Column Vector on the Linear Algebra and Differential Equations exam?

A problem set question may show a vector in column form and ask you to identify its dimension, multiply it by a matrix, or use it as the unknown vector in Ax=bAx=b. You may also need to decide whether a proposed multiplication is valid by checking dimensions first. In systems of equations, the move is to translate the variables into a column vector, then use row reduction or back substitution to solve for its entries. If a question asks for a transformation, interpret the output as another column vector and describe what changed, such as scaling or direction. Watch for row vector versus column vector confusion, since the orientation changes the whole setup.

Column Vector vs Row Vector

A row vector has one row and multiple columns, while a column vector has one column and multiple rows. They may contain the same entries, but they do not behave the same in matrix multiplication. In this course, the column form is the standard choice for solution vectors and for applying matrices on the left.

Key things to remember about Column Vector

  • A column vector is a single-column matrix written vertically, usually to represent coordinates, variables, or directions.

  • In matrix equations, the unknowns are often collected into a column vector so you can solve the system as Ax=bAx=b.

  • Matrix multiplication is designed to work naturally with column vectors, which is why they show up in transformations and systems.

  • A row vector and a column vector can contain the same numbers, but their orientation changes whether multiplication works.

  • When you solve a system by row reduction, the final answers describe the entries of a solution column vector.

Frequently asked questions about Column Vector

What is a column vector in Linear Algebra and Differential Equations?

A column vector is a matrix with one column and one or more rows. In this course, it usually represents a point, a direction, or a list of variables in a system of equations. The vertical shape matters because it matches the way matrices act on vectors in multiplication.

How is a column vector different from a row vector?

A column vector has one column, while a row vector has one row. They can contain the same entries, but they are not interchangeable in matrix multiplication because the dimensions have to line up. If you mix them up, the product may be undefined.

How do you use a column vector in a system of equations?

You group the unknowns into a vector like xx, then write the system as Ax=bAx=b. The coefficient matrix AA acts on the unknown column vector to produce the constant column vector bb. That setup makes row reduction and back substitution much cleaner.

Can a column vector represent a transformation?

Yes, but more often it represents the input or output of a transformation. A matrix transforms one column vector into another column vector. In geometry problems, that can mean stretching, rotating, reflecting, or shearing a vector in space.