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

Properties: N/A
Sufficiencies: N/A
Questions: N/A

Matrix-Matrix Multiplication via Dot Products

Recall 9.8 Shear Matrix. Let

X=S21(3)=[1031] and A=[212624]

Use 11.4 Matrix-Matrix Multiplication via Dot Products to find entries of output

B=XA

\begin{proof}[Solution.]
Since we are doing matrix-matrix multiplication via dot products, we will be finding B using an entry-by-entry approach.

B=[b11b12b13b21b22b23]2×3

Let's compute the individual entries of B.

b11=X(1,:)A(:,1)=[10][26]=1(2)+0(6)=2,b12=X(1,:)A(:,2)=[10][12]=1(1)+0(2)=1,b13=X(1,:)A(:,3)=[10][24]1(2)+0(4)=2,b21=X(2,:)A(:,1)=[31][26]=3(2)+1(6)=0,b22=X(2,:)A(:,2)=[31][12]=3(1)+1(2)=1,b23=X(2,:)A(:,3)=[31][24]=3(2)+1(4)=2

Putting this all together, we get

[1031][212624]=[212012]

\end{proof}