Column vector

In linear algebra, a column vector or column matrix is an m × 1 matrix, i.e. a matrix consisting of a single column of m elements.

\mathbf{x} = \begin{bmatrix} x_1 \\ x_2 \\ \vdots \\ x_m \end{bmatrix}

The transpose of a column vector is a row vector and vice versa:

\begin{bmatrix} x_1 \\ x_2 \\ \vdots \\ x_m \end{bmatrix}^{\rm T} = \begin{bmatrix} x_1 \; x_2 \; \dots \; x_m \end{bmatrix}

The set of all column vectors with a given number of elements forms a vector space which is the dual space to the set of all row vectors with that number of elements.

Notation

To simplify writing column vectors in-line with other text, sometimes they are written as row vectors with the transpose operation applied to them.

\mathbf{x} = \begin{bmatrix} x_1 \; x_2 \; \dots \; x_m \end{bmatrix}^{\rm T}
or
\mathbf{x} = \begin{bmatrix} x_1, x_2, \dots, x_m \end{bmatrix}^{\rm T}

For further simplification, some authors also use the convention of writing both column vectors and row vectors as rows, but separating row vector elements with commas and column vector elements with semicolons (see alternative notation 2 in the table below).

Row vector Column vector
Standard matrix notation  \begin{bmatrix} x_1 \; x_2 \; \dots \; x_m \end{bmatrix}  \begin{bmatrix} x_1 \\ x_2 \\ \vdots \\ x_m \end{bmatrix} \text{ or } \begin{bmatrix} x_1 \; x_2 \; \dots \; x_m \end{bmatrix}^{\rm T}
Alternative notation 1  \begin{bmatrix} x_1, x_2, \dots, x_m \end{bmatrix} \qquad  \begin{bmatrix} x_1, x_2, \dots, x_m \end{bmatrix}^{\rm T}
Alternative notation 2  \begin{bmatrix} x_1, x_2, \dots, x_m \end{bmatrix} \qquad  \begin{bmatrix} x_1; x_2; \dots; x_m \end{bmatrix}

Operations

\mathbf{a} \cdot \mathbf{b} = \mathbf{a}^\mathrm{T} \mathbf{b} = \begin{bmatrix}
    a_1  & a_2  & a_3
\end{bmatrix}\begin{bmatrix} 
    b_1 \\ b_2 \\ b_3
\end{bmatrix}.

See also

References