Multiply the Matrices
Problem
Solution
Check dimensions for matrix multiplication. The first matrix is a
3×1 matrix (3 rows, 1 column) and the second matrix is a3×3 matrix (3 rows, 3 columns).Determine compatibility of the operation. For matrix multiplication
A×B the number of columns inA must equal the number of rows inB Identify the mismatch in dimensions. The first matrix has
1 column, while the second matrix has3 rows.Conclude that the operation is undefined. Since
1≠3 these matrices cannot be multiplied in the order given.
Final Answer
Want more problems? Check here!