Multiply the Matrices [[-1],[2],[1]][[2],[3],[-1]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
3×1 column vector and the second matrix is a1×3 row vector.Determine the size of the resulting matrix. Multiplying a
3×1 matrix by a1×3 matrix results in a3×3 matrix.Apply the matrix multiplication rule where the element at row
i and columnj is the product of thei th element of the first matrix and thej th element of the second matrix.Calculate the first row:
Calculate the second row:
Calculate the third row:
Final Answer
Want more problems? Check here!