Add [[5,2],[2,2]][[2],[6]]
Problem
Solution
Identify the operation as matrix multiplication between a
2×2 matrix and a2×1 column vector.Multiply the first row of the matrix by the column vector by calculating the sum of the products of corresponding entries.
Calculate the value for the first entry of the resulting vector.
Multiply the second row of the matrix by the column vector.
Calculate the value for the second entry of the resulting vector.
Combine the results into a new
2×1 vector.
Final Answer
Want more problems? Check here!