Multiply the Matrices [[2],[-3]][[9],[6]]
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:
2×9=18 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:
2×6=12 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:
−3×9=−27 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:
−3×6=−18
Final Answer
Want more problems? Check here!