Multiply the Matrices
Problem
Solution
Identify the type of multiplication. The second matrix is a diagonal matrix, which means multiplying the first matrix by it on the right will scale each column of the first matrix by the corresponding diagonal element.
Calculate the first column of the resulting matrix by multiplying the first column of the left matrix by the first diagonal element,
4
Calculate the second column of the resulting matrix by multiplying the second column of the left matrix by the second diagonal element,
3
Calculate the third column of the resulting matrix by multiplying the third column of the left matrix by the third diagonal element,
2
Combine the calculated columns into the final matrix format.
Final Answer
Want more problems? Check here!