Lecture 17 - Double Sums

This idea stems from one of the cautionary tales from before.

Let (aij) be a doubly-indexed array of numbers:

What is aij? Let's look at a few natural examples (candidates, if you will). Do we add up the rows then columns? Or the columns then the rows? We could try the first where we add the rows then the columns:

i=1j=1aij: rows first

Another natural candidate would be columns first:

j=1i=1aij: columns first

Maybe we want something that is more balanced. Recall that this rows/columns first mentality lead to some issues. We could try diagonals first:

n=1i+j=n+1aij: diagonals first

We could also sum over the n×n box of all the top-left n-box elements, and let n:

limni=1nj=1naij:box method

You can think of the inside as a partial sum sn=nnaij.

Recall from yesterday was that rearrangement for a conditional convergent series had the limit of partial sums approach any value of our choosing. The idea here is similar in that rearrangements of these double sums shouldn't change anything.

Double Sum Construction

If {(i,j)X|aij||XN×N,|X| is finite} is bounded, then all these values converge, and to the same value.

This is just saying that any finite sum of these aij should be bounded, and if that's the case then we can 'let' our X approach the whole set of N×N.

If we let Tn=i=1nj=1n|aij|, then this is equivalent to our double-sum construction condition, since then X is just the n×n box of the upper-left terms. Clearly Tn is an increasing sequence, so then if it's bounded by the construction, then it's equivalent to saying that Tn is convergent (and thus Cauchy) since it's now monotone.

Proof
Let Sn=i=1nj=1naij (this is just like our Tn, except without the absolute values). Note that if n>m and for notation say Xn,Xm are the n×n and m×m boxed respectively:

|SnSm|=|(i,j)Xn,XmXaij|

Adds up the L-shaped region in the figure below:

Then:

|aij|=TnTm=|TnTm|

We showed that Tn is cauchy, so then |TnTm|<ε for any ε. Thus then if we let ε>0 then |SnSm|<ε so then it must be Cauchy and thus converge.

As a result we can call:

S=limnSn=limni=1nj=1naij

Adding the Diagonals

Let's show that adding the diagonals works here:

Proof
Let dn=i+j=n+1naij add up the n entries

The claim is that n=1dn=S. The idea is that Dm=d1++dm is the m-th partial sum of the dn's. In that regard it add the top-left triangle:

So let $\varepsilon > 0$. Choose $N \in \mathbb{N}$ where: - (top-left box with only orange): $m \geq N$ implies - (the biggest box, as well as the green/red triangles summed up): $n > m \geq N$ implies

Suppose m2NN (the idea is to get the biggest box). We NTS that |DmS|<ε.

Dm=n=1mdn=n=1mj+j=n+1aij=(i,j)XnaijSN+(i,j)Xn,X2maij|DmS||SNS|+(i,j)Xn,X2m|aij| Triangle Inequality|SnS|+|T2mTN|<ε2+ε2=ε

Adding the Rows

We can't go into the proof, but the idea is that if we have:

Ri=j=1aij

we first need to show it converges to some Ri. We then need to show that i=1Ri=S.