Multiply the Matrices [[3],[-2]]*[[1,3],[-1,1]]
Problem
Solution
Check dimensions for matrix multiplication. The first matrix is a
2×1 matrix (2 rows, 1 column) and the second matrix is a2×2 matrix (2 rows, 2 columns).Determine compatibility by comparing the number of columns in the first matrix to the number of rows in the second matrix. The first matrix has
1 column and the second matrix has2 rows.Conclude that the multiplication is undefined. For matrix multiplication
A*B to be possible, the number of columns inA must equal the number of rows inB
Final Answer
Want more problems? Check here!