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

This commit is contained in:
zleyyij 2024-02-12 20:59:22 -07:00
parent 4e281bcad6
commit ab4c7bcfd7

View File

@ -15,7 +15,17 @@ $$
## Multiplying matrices
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
For example: the following matrices could be multiplied together because the number of columns in the first matrix (3) matches the number of rows in the second matrix (3).
$$
\begin{bmatrix}
1 & 2 & 3\\
4 & 5 & 6
\end{bmatrix} *
\begin{bmatrix}
1 & 2
\end{bmatrix}
$$
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.