Add [[1,3],[-9,-6]][[6],[-7]]
Problem
Solution
Identify the operation as matrix multiplication between a
2×2 matrix and a2×1 column 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.
Calculate the second entry of the resulting vector by taking the dot product of the second row of the matrix and the column vector.
Combine the results into a new
2×1 column vector.
Final Answer
Want more problems? Check here!