Add [[1,2,3,0],[2,4,6,0],[3,6,9,0]]
Problem
Solution
Identify the task as the summation of the elements within the given matrix.
Sum the elements of the first row:
1 + 2 + 3 + 0 = 6$.Sum the elements of the second row:
2 + 4 + 6 + 0 = 12$.Sum the elements of the third row:
3 + 6 + 9 + 0 = 18$.Calculate the total sum by adding the results of the rows together:
6 + 12 + 18 = 36$.
Final Answer
Want more problems? Check here!