Simplify the Matrix
Problem
Solution
Identify the rule for matrix multiplication, where the element in the
i th row andj th column is the dot product of thei th row of the first matrix and thej th column of the second matrix.Calculate the top-left element
(a_11) by multiplying the first row by the first column.
Calculate the top-right element
(a_12) by multiplying the first row by the second column.
Calculate the bottom-left element
(a_21) by multiplying the second row by the first column.
Calculate the bottom-right element
(a_22) by multiplying the second row by the second column.
Final Answer
Want more problems? Check here!