Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
3×3 diagonal matrix and the second is a3×2 matrix. The resulting matrix will be3×2 Calculate the first row of the product by multiplying the first row of the diagonal matrix by each column of the second matrix.
Calculate the second row of the product by multiplying the second row of the diagonal matrix by each column of the second matrix.
Calculate the third row of the product by multiplying the third row of the diagonal matrix by each column of the second matrix.
Assemble the results into the final
3×2 matrix.
Final Answer
Want more problems? Check here!