Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices. Both are
3×3 matrices, so their product will also be a3×3 matrix.Calculate the element in the first row, first column 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.
Calculate the element in the first row, third column.
Calculate the element in the second row, first column.
Calculate the element in the second row, second column.
Calculate the element in the second row, third column.
Calculate the element in the third row, first column.
Calculate the element in the third row, second column.
Calculate the element in the third row, third column.
Assemble the resulting matrix using the calculated values.
Final Answer
Want more problems? Check here!