Matrix Multiplication(A × B)_[i,j] = ∑ A_[i,k] × B_[k,j]Dot product of row i from A and column j from B.
Worked examples
Matrix Addition Example
For A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]], A + B = [[6, 8], [10, 12]].
Frequently asked questions
What is matrix multiplication?
Matrix multiplication involves multiplying elements of a row in the first matrix by corresponding elements of a column in the second matrix and summing the products.
What is a transpose matrix?
The transpose of a matrix is formed by swapping its rows and columns.