The basic definition of matrix multiplication $A B$ tells us to multiply rows of $A$ by columns of $B$. Remarkably, if you suitably interpret the operation, you can also compute $A B$ by multiplying columns of $A$ by rows of $B$ ! Suppose $A$ is an $m \times n$ matrix with columns $\mathbf{c}_1, \ldots, \mathbf{c}_n$. Suppose $B$ is an $n \times p$ matrix with rows $\mathbf{r}_1, \ldots, \mathbf{r}_n$. Then we claim that
$$
A B=\mathbf{c}_1 \mathbf{r}_1+\mathbf{c}_2 \mathbf{r}_2+\cdots+\mathbf{c}_n \mathbf{r}_n \text {, }
$$
where each summand is a matrix of size $m \times p$. (a) Verify that the particular case
$$
\left(\begin{array}{ll}
1 & 2 \\
3 & 4
\end{array}\right)\left(\begin{array}{rr}
0 & -1 \\
2 & 3
\end{array}\right)=\left(\begin{array}{l}
1 \\
3
\end{array}\right)\left(\begin{array}{ll}
0 & -1
\end{array}\right)+\left(\begin{array}{l}
2 \\
4
\end{array}\right)\left(\begin{array}{ll}
2 & 3
\end{array}\right)=\left(\begin{array}{rr}
0 & -1 \\
0 & -3
\end{array}\right)+\left(\begin{array}{rr}
4 & 6 \\
8 & 12
\end{array}\right)=\left(\begin{array}{ll}
4 & 5 \\
8 & 9
\end{array}\right)
$$
agrees with the usual method for computing the matrix product. (b) Use this method to compute the matrix products $(i)\left(\begin{array}{rr}-2 & 1 \\ 3 & 2\end{array}\right)\left(\begin{array}{rr}1 & -2 \\ 1 & 0\end{array}\right)$,
(ii)
$$
\left(\begin{array}{rrr}
1 & -2 & 0 \\
-3 & -1 & 2
\end{array}\right)\left(\begin{array}{rr}
2 & 5 \\
-3 & 0 \\
1 & -1
\end{array}\right)
$$
(iii) $\left(\begin{array}{rrr}3 & -1 & 1 \\ -1 & 2 & 1 \\ 1 & 1 & -5\end{array}\right)\left(\begin{array}{rrr}2 & 3 & 0 \\ 3 & -1 & 4 \\ 0 & 4 & 1\end{array}\right)$, and verify that you get the same answer as that obtained by the traditional method. (c) Explain why (1.13) is a special case of (1.14). (d) Prove that (1.14) gives the correct formula for the matrix product.