Exercise 8.2

Exercise 2: Let a ij be the number in the i th row and j th column of the array

1 0 0 0 1 2 1 0 0 1 4 1 2 1 0 1 8 1 4 1 2 1

so that

a ij = { 0 ( i < j ) , 1 ( i = j ) , 2 j i ( i > j ) .

Prove that

i j a ij = 2 , j i a ij = 0 .

Answers

(Matt “Frito” Lundy)
Along any row, the positive entries form a finite geometric sequence, and the sum of all the entries along a row is

j = 1 a ij = ( 1 2 ) i 1 ,

and so we have

i = 1 j = 1 a ij = i = 1 ( 1 2 ) i 1 = 2 .

Whereas along any column, the positive entries form an infinite geometric sequence, and the sum of all the entries along a column is

i = 1 a ij = 1 + n = 1 ( 1 2 ) n = 1 + ( 1 1 1 2 1 ) = 0 ,

so that

j = 1 i = 1 a ij = 0 .

Note that this double sequence { a ij } fails to meet the criteria of theorem 8.3 because if

j = 1 | a ij | = b i

then b i diverges.

User profile picture
2023-08-07 00:00
Comments