Multiply the Matrices [[-3],[4],[5]]*[[1],[1],[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. Since we are multiplying a
3×1 matrix by a1×3 matrix, the result will be a3×3 matrix.Apply the matrix multiplication rule where the element at row
i and columnj is the product of thei th row of the first matrix and thej th column of the second matrix.Calculate the first row:
(−3)*(1)=−3 (−3)*(1)=−3 and(−3)*(1)=−3 Calculate the second row:
(4)*(1)=4 (4)*(1)=4 and(4)*(1)=4 Calculate the third row:
(5)*(1)=5 (5)*(1)=5 and(5)*(1)=5
Final Answer
Want more problems? Check here!