Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices. We are multiplying a
2×2 matrix by a2×1 column vector, which will result in a2×1 vector.Calculate the first entry of the resulting vector by taking the dot product of the first row of the matrix and the column vector.
Simplify the first entry calculation by performing the multiplication and addition.
Calculate the second entry of the resulting vector by taking the dot product of the second row of the matrix and the column vector.
Simplify the second entry calculation by performing the multiplication and addition.
Final Answer
Want more problems? Check here!