Loading...

Add [[12,10]]+[[2,1]]

Problem

[[12,10]]+[[2,1]]

Solution

  1. Identify the operation as matrix addition for two row vectors of the same dimension.

  2. Add the corresponding elements from each vector.

  3. Calculate the first component: 12 + 2 = 14$.

  4. Calculate the second component: 10 + 1 = 11$.

Final Answer

[[12,10]]+[[2,1]]=[[14,11]]


Want more problems? Check here!