Multiply the Matrices [[5],[7]][[3],[-2]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
2×1 column vector and the second matrix is a1×2 row vector.Determine the size of the resulting matrix. Since we are multiplying a
2×1 matrix by a1×2 matrix, the result will be a2×2 matrix.Calculate the entry at row 1, column 1 by multiplying the first element of the first matrix by the first element of the second matrix:
5⋅3=15 Calculate the entry at row 1, column 2 by multiplying the first element of the first matrix by the second element of the second matrix:
5⋅(−2)=−10 Calculate the entry at row 2, column 1 by multiplying the second element of the first matrix by the first element of the second matrix:
7⋅3=21 Calculate the entry at row 2, column 2 by multiplying the second element of the first matrix by the second element of the second matrix:
7⋅(−2)=−14 Assemble the results into the final
2×2 matrix.
Final Answer
Want more problems? Check here!