Matrix multiplication requires strict adherence to certain rules concerning their dimensions. For two matrices, or vectors, to be multiplicable, the number of columns in the first matrix must equal the number of rows in the second matrix. For example, if we have a row vector \(\vec{u}\) with dimensions 1 x 3, and a column vector \(\vec{v}\) with dimensions 2 x 1, they cannot be multiplied as these inner dimensions (3 and 2) do not match.
- The product is only possible if the first matrix's columns match the second's rows.
- This product will result in a new matrix having dimensions defined by the outer dimensions: 1 x 1 in a compatible scenario, indicating a single numerical result.
Recognizing these rules is essential for determining the feasibility of multiplication, setting the stage for correct matrix algebra.