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