Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices. The first matrix is
2×4 and the second is4×2 so the resulting matrix will be2×2 Calculate the element in the first row, first column (
(c_11) by taking the dot product of the first row of the first matrix and the first column of the second matrix.
Calculate the element in the first row, second column (
(c_12) by taking the dot product of the first row of the first matrix and the second column of the second matrix.
Calculate the element in the second row, first column (
(c_21) by taking the dot product of the second row of the first matrix and the first column of the second matrix.
Calculate the element in the second row, second column (
(c_22) by taking the dot product of the second row of the first matrix and the second column of the second matrix.
Final Answer
Want more problems? Check here!