Add [[-1,-2],[4,3]]+[[5,-3],[2,-1]]
Problem
Solution
Identify the corresponding elements in each matrix that need to be added together.
Add the elements in the first row, first column:
−1+5=4 Add the elements in the first row, second column:
−2+(−3)=−5 Add the elements in the second row, first column:
4 + 2 = 6$.Add the elements in the second row, second column:
3 + (-1) = 2$.Combine these results into a new matrix of the same dimensions.
Final Answer
Want more problems? Check here!