Consider: $$ \begin{matrix} -1 & 0 & 0 & 0& 0& \ldots\\ 1/2 & -1 & 0 & 0& 0& \ldots\\ 1/4 & 1/2 & -1 & 0& 0& \ldots\\ 1/8 & 1/4 & 1/2 & -1& 0& \ldots\\ 1/16&1/8 & 1/4 & 1/2 & -1& \ldots\\ \vdots&\vdots&\vdots&\vdots&\vdots&\ddots \end{matrix} $$
When I calculate the sum of each column first, I got $0,0,0\ldots$ then sum them up the answer should be $0$. But when I calculate the sum of each row, I got $-1, -1/2, -1/4, -1/8,\ldots$, then the sum will be $-2$. Why is there different results when I calculate the sum?