Add [[2,3],[2,5]]+[[-1,3],[-4,6]]
Problem
Solution
Identify the corresponding elements in each matrix that need to be added together.
Add the elements in the first row, first column:
2 + (-1)$.Add the elements in the first row, second column:
3 + 3$.Add the elements in the second row, first column:
2 + (-4)$.Add the elements in the second row, second column:
5 + 6$.Simplify each sum to form the resulting matrix.
Final Answer
Want more problems? Check here!