Add [[1,1,9],[1,1,7],[1,-2,2]]
Problem
Solution
Identify the task as the summation of the elements within the provided matrix or list of vectors.
Sum the elements of the first row:
1 + 1 + 9 = 11$.Sum the elements of the second row:
1 + 1 + 7 = 9$.Sum the elements of the third row:
1 + (-2) + 2 = 1$.Calculate the total sum by adding the results of the individual rows:
11 + 9 + 1 = 21$.
Final Answer
Want more problems? Check here!