Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices to ensure multiplication is possible. The first matrix is
3×3 and the second is3×1 resulting in a3×1 matrix.Calculate the first entry by taking the dot product of the first row of the left matrix and the column of the right matrix.
Calculate the second entry by taking the dot product of the second row of the left matrix and the column of the right matrix.
Calculate the third entry by taking the dot product of the third row of the left matrix and the column of the right matrix.
Assemble the results into the final
3×1 column matrix.
Final Answer
Want more problems? Check here!