Add
Problem
Solution
Identify the task as finding the sum of the elements within the given matrix.
Sum the elements of the first row:
0 + 0 + 2 + 1 = 3$.Sum the elements of the second row:
1 + 0 + 1 + 0 = 2$.Sum the elements of the third row:
0 + 1 + (-2) + 0 = -1$.Sum the elements of the fourth row:
0 + 0 + 0 + 1 = 1$.Calculate the total sum by adding the row results together:
3 + 2 + (-1) + 1 = 5$.
Final Answer
Want more problems? Check here!