Matrix Multiplication
Fundamental Law of Matrix Multiplication AB times C equals A times BC
To multiply AB: If A has n columns, B must have n rows.
- The entry in row i and column j of AB is (row i of A) ยท ( column j of B) .
- Matrix A times every column of B
- Every row of A times matrix BA
- Multiply columns 1 ton of A times rows 1 ton of B. Add those matrices.