Loading...

Add [[1],[2],[0]][[0],[2],[1]]

Problem

[[1],[2],[0]]+[[0],[2],[1]]

Solution

  1. Identify the operation as vector addition, which requires adding the corresponding components of each vector.

  2. Add the first components: 1 + 0 = 1$.

  3. Add the second components: 2 + 2 = 4$.

  4. Add the third components: 0 + 1 = 1$.

  5. Combine the results into a new vector.

Final Answer

[[1],[2],[0]]+[[0],[2],[1]]=[[1],[4],[1]]


Want more problems? Check here!