Multiply the Matrices [[1/5,2/5],[4/5,2/5]][[1,4],[-2,2]]
Problem
Solution
Identify the rule for matrix multiplication, where the element in row
i and columnj of the resulting matrix 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:
Assemble the resulting matrix using the calculated values.
Final Answer
Want more problems? Check here!