Add [[6,-4,-2,-1],[3,1,-1,1],[1,-1,3,5]]
Problem
Solution
Identify the task as the summation of all elements within the given
3×4 matrix.Sum the first row elements:
6 + (-4) + (-2) + (-1) = -1$.Sum the second row elements:
3 + 1 + (-1) + 1 = 4$.Sum the third row elements:
1 + (-1) + 3 + 5 = 8$.Add the row sums together to find the total sum:
−1+4+8=11
Final Answer
Want more problems? Check here!