Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
2×2 matrix and the second is a2×1 matrix. The resulting matrix will be 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 of the second matrix.
Calculate the second element of the resulting matrix by taking the dot product of the second row of the first matrix and the column of the second matrix.
Simplify the expression for the second element.
Final Answer
Want more problems? Check here!