Multiply the Matrices [[1],[1],[-1]][[2],[-5],[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 rule for matrix multiplication 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:
1⋅2=2 1⋅−5=−5 and1⋅1=1 Calculate the second row:
1⋅2=2 1⋅−5=−5 and1⋅1=1 Calculate the third row:
−1⋅2=−2 −1⋅−5=5 and−1⋅1=−1
Final Answer
Want more problems? Check here!