vault backup: 2024-02-12 20:58:22

This commit is contained in:
zleyyij 2024-02-12 20:58:22 -07:00
parent 44ab45a6a8
commit 4e281bcad6

View File

@ -13,7 +13,9 @@ $$
\end{bmatrix} \end{bmatrix}
$$ $$
## Multiplying matrices ## Multiplying matrices
To multiply two matrices, the *number of columns* for the first matrix must match the number of columns in the second. To multiply two matrices, the *number of columns* for the first matrix must match the *number of rows* in the second.
For example: the following matrices could be multiplied together because the number of columns
To get answers, go through each entry in the second matrix, entry by entry, and multiply by every item in the matching row of the first one, then add all of those together. To get answers, go through each entry in the second matrix, entry by entry, and multiply by every item in the matching row of the first one, then add all of those together.