Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices to ensure multiplication is possible. The first matrix is
2×3 and the second is3×1 resulting in a2×1 matrix.Calculate the first element of the resulting matrix by taking the dot product of the first row of the first matrix and the column vector.
Simplify the first element.
Calculate the second element of the resulting matrix by taking the dot product of the second row of the first matrix and the column vector.
Simplify the second element.
Final Answer
Want more problems? Check here!