Multiply the Matrices [[8/7,-1/7],[-1/7,1/7]][[1,1],[1,8]]
Problem
Solution
Identify the rule for matrix multiplication, where the element in row
i and columnj is the dot product of thei th row of the first matrix and thej th column of the second matrix.Calculate the element for the first row, first column:
Calculate the element for the first row, second column:
Calculate the element for the second row, first column:
Calculate the element for the second row, second column:
Combine the results into the resulting matrix.
Final Answer
Want more problems? Check here!