Types: N/A
Examples: N/A
Constructions: N/A
Generalizations: N/A

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

Matrix-Matrix Multiplication via Outer Products

let matrices arm×p and xrp×n. the product b=ax is the m×n matrix whose value is given by

B=A(:,1)X(1,:)+A(:,2)X(2,:)++A(:,p)X(p,:)

Remark. Notice that there are exactly p summands that form the output matrix B.

B=k=1pA(:,k)X(k,:) B=A(:,1)X(1,:)+A(:,2)X(2,:)++A(:,p)=[a11a21a1m][x11x12x1n]+[a12a22am2][x21x22x2n]++[a1pa2pamp][xp1xp2xpn]