Multiply the Matrices [[1/17,7/68],[-1/17,5/34]][[9,0],[0,1]]
Problem
Solution
Identify the matrix multiplication rule where each element
(c_i*j) 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 first row, first column entry by multiplying the first row of the left matrix by the first column of the right matrix.
Calculate the first row, second column entry by multiplying the first row of the left matrix by the second column of the right matrix.
Calculate the second row, first column entry by multiplying the second row of the left matrix by the first column of the right matrix.
Calculate the second row, second column entry by multiplying the second row of the left matrix by the second column of the right matrix.
Assemble the resulting matrix using the calculated values.
Final Answer
Want more problems? Check here!