Multiply the Matrices
Problem
Solution
Check dimensions for matrix multiplication. The first matrix is a
6×2 matrix and the second matrix is a6×1 vector. Matrix multiplicationA×B requires the number of columns inA to equal the number of rows inB Identify the mismatch in dimensions. The first matrix has
2 columns, while the second matrix has6 rows.Conclude that the operation is undefined. Since
2≠6 these matrices cannot be multiplied in the given order.
Final Answer
Want more problems? Check here!