Multiply [[1, 2], [3, 4]] · [[5, 6], [7, 8]]
Combine rows of A with columns of B to compute the product.
Solution
- Matrix A 2×2 [[1, 2], [3, 4]]
- Matrix B 2×2 [[5, 6], [7, 8]]
- Rule Each entry (i,j) is the dot product of row i of A with column j of B.
- Product A·B [[19, 22], [43, 50]]
Try a similar problem yourself
Use the Matrix Multiplication to solve a similar problem with your own values.
Open the solver