Multiply the Matrices [[1,2],[0,-1]]*[[1,0],[0,1]]
Problem
Solution
Identify the matrices and their dimensions. Both are
2×2 matrices, so the resulting matrix will also be2×2 Recognize that the second matrix is the identity matrix
I Multiplying any matrixA by the identity matrixI results in the original matrixA Calculate the top-left element by multiplying the first row of the first matrix by the first column of the second matrix:
(1×1)+(2×0)=1 Calculate the top-right element by multiplying the first row of the first matrix by the second column of the second matrix:
(1×0)+(2×1)=2 Calculate the bottom-left element by multiplying the second row of the first matrix by the first column of the second matrix:
(0×1)+(−1×0)=0 Calculate the bottom-right element by multiplying the second row of the first matrix by the second column of the second matrix:
(0×0)+(−1×1)=−1
Final Answer
Want more problems? Check here!