Multiply the Matrices [[1,0],[0,1]][[2,2]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
2×2 identity matrix and the second is a2×1 column vector. The resulting matrix will be2×1 Calculate the first entry by taking the dot product of the first row of the identity matrix and the column vector.
Calculate the second entry by taking the dot product of the second row of the identity matrix and the column vector.
Recognize that multiplying any matrix by the identity matrix
I results in the original matrix.
Final Answer
Want more problems? Check here!