78 - Matrix Operations

To add two matrices you just add each entry.
Scalar multiplication works the same with matrices as it works with vectors, you multiply each entry.

Matrix Multiplication

You can only multiply two matrices of the same size.
Matrix multiplication gives another matrix where each entry is the dot product of its respective row and column.