Multiply the Matrices [[5],[-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 each element
(c_i*j) is the product of thei th row of the first matrix and thej th column of the second matrix.Calculate the first row:
Calculate the second row:
Calculate the third row:
Final Answer
Want more problems? Check here!