|
Let d and k be natural numbers with d|k. Let X[k] be the set of all
k-tuples ( x[1], ..., x[k] ) of integers such that 0 <= x[1] <= ... <=
x[k] <= k and x[1] + ... + x[k] is divisible by d. Furthermore let
Y[k] be the set of all elements ( x[1], ..., x[k]) of X[k] such that
x[k] = k. What is the relationship between the sizes of X[k] and Y[k]?
Is there a typo up there ? First you say
Let X[k] be the set of all k-tuples (x[1], ..., m x[k])
From that statement, I assume that x[1] is a k-tuple, and x[2] is a k-tuple,...
and x[k] is a k-tuple. But you go on to say
0 <= x[1] <= x[2] ...
That doesn't make sense, since we can't compare a number to a k-tuple.
Maybe you mean
0 <= x[1,1] <= x[1,2] ... ????
Please clarify.
/Eric
|
| Solution by Margherita Barile, student, Universitat Essen, Germany.
We show that
|Y[k]| = |X[k]| / 2.
Let 0 <= x[1] <= x[2] <= ... <= x[k] <= k. For all i, j in { 1, ..., k
} set
a[i,j] = { 1 if x[i] >= j, 0 otherwise.
Then
k
x[i] = sum a[i,j]
j=1
k
for all i. Moreover, set b[i,j] = 1 - a[i,j] and y[i] = sum b[j,i]
j=1
for all i. Since a[i,j] >= a[i,j+1] for all i, j in { 1, ..., k }, it
follows that 0 <= y[1] <= ... <= y[k] <= k. Also
k k k k 2
sum x[i] + sum y[i] = sum sum (a[i,j] + 1 - a[i,j]) = k .
i=1 i=1 i=1 j=1
Thus (x[1], ..., x[k]) is in X[k] if and only if (y[1], ..., y[k]) is
in X[k] [since d|k]. Furthermore, x[k] = k if and only if a[i,k] = 1
for some i [if and only if a[k,k] = 1], which is the case if and only
if
k
y[k] = k - sum a[i,k] < k.
i=1
Thus the injection phi: X[k] -> X[k] defined by the assignment
phi: (x[1], ..., x[k]) -> (y[1], ..., y[k])
is such that phi(Y[k]) is a subset of X[k] \ Y[k] and phi(X[k] \ Y[k])
is a subset of Y[k]. Hence |Y[k]| = |X[k] \ Y[k]|, so |X[k]| = 2
|Y[k]|, as was to be proved.
|