Sections:

Multiplying Matrices



About:
Additional Resources:

In this lesson, we learn how to multiply matrices. In order to multiply two matrices together, the number of columns from the first matrix (leftmost) must be equal to the number of rows from the second matrix (rightmost). Once we have confirmed this fact, we set up a matrix for our product with the number of rows from the first matrix and the number of columns from the second matrix. To obtain a given individual entry, we use the row and column location of that entry. Once we have that information, we use the row to find the row to work within the first matrix (leftmost) and we use the column to find the column to work within the second matrix (rightmost). The given entry is found by obtaining the dot product of that given row by that given column. We can find all entries of the matrix using the same strategy.
+ Show More +