Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
3×3 matrix and the second is a3×1 column vector. The resulting matrix will be a3×1 column vector.Calculate the first element of the resulting vector by taking the dot product of the first row of the matrix and the column vector.
Calculate the second element of the resulting vector by taking the dot product of the second row of the matrix and the column vector.
Calculate the third element of the resulting vector by taking the dot product of the third row of the matrix and the column vector.
Final Answer
Want more problems? Check here!