Multiply the Matrices [[1],[3],[1]][[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×2 row vector.Determine the size of the resulting matrix. Multiplying a
3×1 matrix by a1×2 matrix results in a3×2 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:
1⋅5=5 and1⋅(−1)=−1 Calculate the second row:
3⋅5=15 and3⋅(−1)=−3 Calculate the third row:
1⋅5=5 and1⋅(−1)=−1
Final Answer
Want more problems? Check here!