Types: N/A
Examples: 11.2.1 Example of Matrix-Matrix Multiplication via Linear Combination of Columns
Constructions: N/A
Generalizations: 10.1 Matrix-Column-Vector Multiplication via Linear Combinations

Properties: 11.6 Algebraic Properties of Matrix-Matrix Multiplication
Sufficiencies: N/A
Questions: N/A

Matrix-Matrix Multiplication via Linear Combination of Columns

Let matrices ARm×p and XRp×n. If we multiply A on the right by X to form the m×n matrix B=AX, then

Columnk(B)=AColumnk(X)

for k{1,2,,n}.

  • The kth column of B is the matrix A multiplied on the right by the kth column of X.

In 8.11 Colon Notation, we write this operation as

B(:,k)=AX(:,k)

Remark. The kth column of product output B is a linear combination of the columns of matrix A and the scalars of the kth column of X. We can write this as

B(:,k)=[b1kb2kbmk]m×1=x1k[a11a21am1]m×1+x2k[a12a22am2]m×1++xpk[a1pa2pamp]m×1