| What condition must be met for two matrices to be multiplied? | The number of columns in the first matrix must equal the number of rows in the second matrix. |
| If A is an m \times n matrix and B is a p \times q matrix, when can they be multiplied and what is the order of the result? | They can be multiplied if n = p. The resulting matrix has order m \times q. |
| Is matrix multiplication commutative? | No, matrix multiplication is not commutative: \mathbf{A} \times \mathbf{B} \neq \mathbf{B} \times \mathbf{A}. |
| Is matrix multiplication associative? | Yes, if multiple matrices can be multiplied, then matrix multiplication is associative: (\mathbf{A} \times \mathbf{B}) \times \mathbf{C} = \mathbf{A} \times (\mathbf{B} \times \mathbf{C}). |
| Evaluate A \times B where A=\begin{bmatrix} 2 & 5 & 3 \\ -1 & 3 & 2 \end{bmatrix} and B=\begin{bmatrix} 2 \\ 1 \\ -1 \end{bmatrix}. | \begin{bmatrix} 6 \\ -1 \end{bmatrix} |
| In the matrix multiplication A \times B with A=\begin{bmatrix} 2 & 5 & 3 \\ -1 & 3 & 2 \end{bmatrix} and B=\begin{bmatrix} 2 \\ 1 \\ -1 \end{bmatrix}, how is the top element (6) calculated? | Multiply each element of the first row of A by the corresponding element of the column of B and add: (2 \times 2) + (5 \times 1) + (3 \times -1) = 4 + 5 + -3 = 6. |
| Evaluate \begin{bmatrix} 5 & 3 \\ 3 & 2 \end{bmatrix}\begin{bmatrix} 2 & 1 \\ 1 & 3 \end{bmatrix}. | \begin{bmatrix} 13 & 14 \\ 8 & 9 \end{bmatrix} |
| In the multiplication \begin{bmatrix} 5 & 3 \\ 3 & 2 \end{bmatrix}\begin{bmatrix} 2 & 1 \\ 1 & 3 \end{bmatrix}, how is the top-right element (14) found? | Multiply each element of the first row of the first matrix by the corresponding element of the second column of the second matrix and add: (5 \times 1) + (3 \times 3) = 5 + 9 = 14. |
| In the multiplication \begin{bmatrix} 5 & 3 \\ 3 & 2 \end{bmatrix}\begin{bmatrix} 2 & 1 \\ 1 & 3 \end{bmatrix}, how is the bottom-left element (8) found? | Multiply each element of the second row of the first matrix by the corresponding element of the first column of the second matrix and add: (3 \times 2) + (2 \times 1) = 6 + 2 = 8. |