Loading...

Add [[1,2,3,0],[2,4,6,0],[3,6,9,0]]

Problem

[[1,2,3,0],[2,4,6,0],[3,6,9,0]]

Solution

  1. Identify the task as the summation of the elements within the given matrix.

  2. Sum the elements of the first row: 1 + 2 + 3 + 0 = 6$.

  3. Sum the elements of the second row: 2 + 4 + 6 + 0 = 12$.

  4. Sum the elements of the third row: 3 + 6 + 9 + 0 = 18$.

  5. Calculate the total sum by adding the results of the rows together: 6 + 12 + 18 = 36$.

Final Answer

(∑_i,j^)((A_i,j))=36


Want more problems? Check here!