Singular Value Decomposition - Transpose and Dot Product
matrix
In this third post of the series, we will introduce two additional building blocks.
Transpose ¶
The transpose of a column vector
then the transpose of
The transpose of a row vector becomes a column vector with the same elements
and vice versa.
The element in the
The transpose has some important properties. First, the transpose of a transpose is itself.
In addition, the transpose of a product is the product of transpose in the reverse order.
Dot product ¶
If we have two vectors
The dot product (aka inner product) of these vectors is defined as the transpose
of
Based on this definition, the dot product is commutative:
In the next post, we will return to the topic of eigenvalues and eigenvectors.