In linear algebra, the outer product of two coordinate vectors is the matrix whose entries are all products of an element in the first vector with an element in the second vector. If the two coordinate vectors have dimensions n and m, then their outer product is an n × m matrix. More generally, given two tensors (multidimensional arrays of numbers), their outer product is a tensor. The outer product of tensors is also referred to as their tensor product, and can be used to define the tensor algebra.
The outer product contrasts with:
- The dot product (a special case of "inner product"), which takes a pair of coordinate vectors as input and produces a scalar
- The Kronecker product, which takes a pair of matrices as input and produces a block matrix
- Standard matrix multiplication
Definition
Given two vectors of size
and
respectively

their outer product, denoted
is defined as the
matrix
obtained by multiplying each element of
by each element of
:[1]

Or, in index notation:

Denoting the dot product by
if given an
vector
then
If given a
vector
then
If
and
are vectors of the same dimension bigger than 1, then
.
The outer product
is equivalent to a matrix multiplication
provided that
is represented as a
column vector and
as a
column vector (which makes
a row vector).[2][3] For instance, if
and
then[4]

For complex vectors, it is often useful to take the conjugate transpose of
denoted
or
:

Contrast with Euclidean inner product
If
then one can take the matrix product the other way, yielding a scalar (or
matrix):

which is the standard inner product for Euclidean vector spaces,[3] better known as the dot product. The dot product is the trace of the outer product.[5] Unlike the dot product, the outer product is not commutative.
Multiplication of a vector
by the matrix
can be written in terms of the inner product, using the relation
.
The outer product of tensors
Given two tensors
with dimensions
and
, their outer product
is a tensor with dimensions
and entries

For example, if
is of order 3 with dimensions
and
is of order 2 with dimensions
then their outer product
is of order 5 with dimensions
If
has a component A[2, 2, 4] = 11 and
has a component B[8, 88] = 13, then the component of
formed by the outer product is C[2, 2, 4, 8, 88] = 143.
Connection with the Kronecker product
The outer product and Kronecker product are closely related; in fact the same symbol is commonly used to denote both operations.
If
and
, we have:

In the case of column vectors, the Kronecker product can be viewed as a form of vectorization (or flattening) of the outer product. In particular, for two column vectors
and
, we can write:

(The order of the vectors is reversed on the right side of the equation.)
Another similar identity that further highlights the similarity between the operations is

where the order of vectors needs not be flipped. The middle expression uses matrix multiplication, where the vectors are considered as column/row matrices.
Connection with the matrix product
Given a pair of matrices
of size
and
of size
, consider the matrix product
defined as usual as a matrix of size
.
Now let
be the
-th column vector of
and let
be the
-th row vector of
. Then
can be expressed as a sum of column-by-row outer products:
![{\displaystyle \mathbf {C} =\mathbf {A} \,\mathbf {B} =\left(\sum _{k=1}^{p}{A}_{ik}\,{B}_{kj}\right)_{\begin{matrix}1\leq i\leq m\\[-20pt]1\leq j\leq n\end{matrix}}={\begin{bmatrix}&&\\\mathbf {a} _{1}^{\text{col}}&\cdots &\mathbf {a} _{p}^{\text{col}}\\&&\end{bmatrix}}{\begin{bmatrix}&\mathbf {b} _{1}^{\text{row}}&\\&\vdots &\\&\mathbf {b} _{p}^{\text{row}}&\end{bmatrix}}=\sum _{k=1}^{p}\mathbf {a} _{k}^{\text{col}}\mathbf {b} _{k}^{\text{row}}}](./_assets_/eb734a37dd21ce173a46342d1cc64c92/e5921195e51ececbc1da6ece9c961543edf30dc9.svg)
This expression has duality with the more common one as a matrix built with row-by-column inner product entries (or dot product):
This relation is relevant[6] in the application of the Singular Value Decomposition (SVD) (and Spectral Decomposition as a special case). In particular, the decomposition can be interpreted as the sum of outer products of each left (
) and right (
) singular vectors, scaled by the corresponding nonzero singular value
:

This result implies that
can be expressed as a sum of rank-1 matrices with spectral norm
in decreasing order. This explains the fact why, in general, the last terms contribute less, which motivates the use of the truncated SVD as an approximation. The first term is the least squares fit of a matrix to an outer product of vectors.
Properties
The outer product of vectors satisfies the following properties:

The outer product of tensors satisfies the additional associativity property:

Rank of an outer product
If u and v are both nonzero, then the outer product matrix uvT always has matrix rank 1. Indeed, the columns of the outer product are all proportional to u. Thus they are all linearly dependent on that one column, hence the matrix is of rank one.
("Matrix rank" should not be confused with "tensor order", or "tensor degree", which is sometimes referred to as "rank".)
Definition (abstract)
Let V and W be two vector spaces. The outer product of
and
is the element
.
If W is an inner product space, then it is possible to define the outer product as a linear map W → V. In this case, the linear map
is an element of the dual space of W, as this maps linearly a vector into its underlying field, of which
is an element. The outer product W → V is then given by

This shows why a conjugate transpose of w is commonly taken in the complex case.
In programming languages
In some programming languages, given a two-argument function f (or a binary operator), the outer product, f, of two one-dimensional arrays, A and B, is a two-dimensional array C such that C[i, j] = f(A[i], B[j]). This is syntactically represented in various ways: in APL, as the infix binary operator ∘.f; in J, as the postfix adverb f/; in R, as the function outer(A, B, f) or the special %o%;[7] in Mathematica, as Outer[f, A, B]. In MATLAB, the function kron(A, B) is used for this product. These often generalize to multi-dimensional arguments, and more than two arguments.
In the Python library NumPy, the outer product can be computed with function np.outer().[8] In contrast, np.kron results in a flat array. The outer product of multidimensional arrays can be computed using np.multiply.outer.
Applications
As the outer product is closely related to the Kronecker product, some of the applications of the Kronecker product use outer products. These applications are found in quantum theory, signal processing, and image compression.[9]
Spinors
Suppose s, t, w, z ∈ C so that (s, t) and (w, z) are in C2. Then the outer product of these complex 2-vectors is an element of M(2, C), the 2 × 2 complex matrices:

The determinant of this matrix is swtz − sztw = 0 because of the commutative property of C.
In the theory of spinors in three dimensions, these matrices are associated with isotropic vectors due to this null property. Élie Cartan described this construction in 1937,[10] but it was introduced by Wolfgang Pauli in 1927[11] so that M(2,C) has come to be called Pauli algebra.
Concepts
The block form of outer products is useful in classification. Concept analysis is a study that depends on certain outer products:
When a vector has only zeros and ones as entries, it is called a logical vector, a special case of a logical matrix. The logical operation and takes the place of multiplication. The outer product of two logical vectors (ui) and (vj) is given by the logical matrix
. This type of matrix is used in the study of binary relations, and is called a rectangular relation or a cross-vector.[12]
See also
Products
Duality
- Bra–ket notation for outer product
- Complex conjugate
- Conjugate transpose
- Transpose
References
- ^ Lerner, R. G.; Trigg, G. L. (1991). Encyclopaedia of Physics (2nd ed.). VHC. ISBN 0-89573-752-3.
- ^ Lipschutz, S.; Lipson, M. (2009). Linear Algebra. Schaum’s Outlines (4th ed.). McGraw-Hill. ISBN 978-0-07-154352-1.
- ^ a b Keller, Frank (February 23, 2020). "Algebraic Properties of Matrices; Transpose; Inner and Outer Product" (PDF). inf.ed.ac.uk. Archived (PDF) from the original on 2017-12-15. Retrieved September 6, 2020.
- ^ James M. Ortega (1987) Matrix Theory: A Second Course, page 7, Plenum Press ISBN 0-306-42433-9
- ^ Stengel, Robert F. (1994). Optimal Control and Estimation. New York: Dover Publications. p. 26. ISBN 0-486-68200-5.
- ^ Trefethen, Lloyd N.; Bau III, David (1997). Numerical linear algebra. Philadelphia: Society for Industrial and Applied Mathematics. ISBN 978-0-89871-361-9.
- ^ "outer function | R Documentation". rdocumentation.org. Retrieved 2020-09-07.
- ^ "numpy.outer — NumPy v1.19 Manual". numpy.org. Retrieved 2020-09-07.
- ^ Steeb, Willi-Hans; Hardy, Yorick (2011). "Applications (Chapter 3)". Matrix Calculus and Kronecker Product: A Practical Approach to Linear and Multilinear Algebra (2 ed.). World Scientific. ISBN 978-981-4335-31-7.
- ^ Élie Cartan (1937) Lecons sur la theorie des spineurs, translated 1966: The Theory of Spinors, Hermann, Paris
- ^ Pertti Lounesto (1997) Clifford Algebras and Spinors, page 51, Cambridge University Press ISBN 0-521-59916-4
- ^ Ki-Hang Kim (1982) Boolean Matrix Theory and Applications, page 37, Marcel Dekker ISBN 0-8247-1788-0
Further reading
Linear algebra |
|---|
- Outline
- Glossary
- Template:Matrix classes
|
| Linear equations | | |
|---|
| Matrices |
- Matrix
- Matrix addition
- Matrix multiplication
- Basis transformation matrix
- Characteristic polynomial
- Spectrum
- Trace
- Eigenvalue, eigenvector and eigenspace
- Cayley–Hamilton theorem
- Jordan normal form
- Weyr canonical form
- Rank
- Inverse, Pseudoinverse
- Adjugate, Transpose
- Dot product
- Symmetric matrix, Skew-symmetric matrix
- Orthogonal matrix, Unitary matrix
- Hermitian matrix, Antihermitian matrix
- Positive-(semi)definite
- Pfaffian
- Projection
- Spectral theorem
- Perron–Frobenius theorem
- Diagonal matrix, Triangular matrix, Tridiagonal matrix
- Block matrix
- Sparse matrix
- Hessenberg matrix, Hessian matrix
- Vandermonde matrix
- Stochastic matrix, Toeplitz matrix, Circulant matrix, Hankel matrix
- (0,1)-matrix
- List of matrices
|
|---|
| Matrix decompositions |
- Cholesky decomposition
- LU decomposition
- QR decomposition
- Polar decomposition
- Spectral theorem
- Singular value decomposition
- Higher-order singular value decomposition
- Schur decomposition
- Schur complement
- Haynsworth inertia additivity formula
- Reducing subspace
|
|---|
| Relations and computations |
- Matrix equivalence
- Matrix congruence
- Matrix similarity
- Matrix consimilarity
- Row equivalence
- Elementary row operations
- Householder transformation
- Least squares
- Linear least squares
- Gram–Schmidt process
- Woodbury matrix identity
|
|---|
| Vector spaces |
- Vector space
- Linear combination
- Linear span
- Linear independence
- Basis, Hamel basis
- Change of basis
- Dimension theorem for vector spaces
- Hamel dimension
- Examples of vector spaces
- Linear map
- Shear mapping
- Squeeze mapping
- Linear subspace
- Row and column spaces, Null space
- Rank–nullity theorem
- Nullity theorem
- Cyclic subspace
- Dual space, Linear functional
- Category of vector spaces
|
|---|
| Structures |
- Topological vector space
- Normed vector space
- Inner product space
- Euclidean space
- Orthogonality
- Orthogonal complement
- Orthogonal projection
- Orthogonal group
- Pseudo-Euclidean space
- Null vector
- Indefinite orthogonal group
- Orientation
- Improper rotation
- Symplectic structure
|
|---|
| Multilinear algebra | |
|---|
| Affine and projective | |
|---|
| Numerical linear algebra | |
|---|
Category
|