Loading...

Add [[2,3],[2,5]]+[[-1,3],[-4,6]]

Problem

[[2,3],[2,5]]+[[−1,3],[−4,6]]

Solution

  1. Identify the corresponding elements in each matrix that need to be added together.

  2. Add the elements in the first row, first column: 2 + (-1)$.

  3. Add the elements in the first row, second column: 3 + 3$.

  4. Add the elements in the second row, first column: 2 + (-4)$.

  5. Add the elements in the second row, second column: 5 + 6$.

  6. Simplify each sum to form the resulting matrix.

Final Answer

[[2,3],[2,5]]+[[−1,3],[−4,6]]=[[1,6],[−2,11]]


Want more problems? Check here!