I can read German a little bit, but silly me got stuck on Di erenz which should have read Differenz. Anyways, I am quite sure the problem statement reads like this:
Given 100 random whole numbers, either prove that it is or is not possible to always select 15 of these numbers so that the difference between at least two of them is divisible by 7.
Note that "Differenz zweier beliebiger dieser 15 Zahlen" does not translate to "a difference of 15 of two of these numbers"; 15 belongs with "Zahlen", or "numbers". So instead, we have "the difference between two of these 15 numbers". Just thought I should point that out.
The problem is quite interesting. It is actually an optimization problem in disguise! The problem simply asks us to find a worst-case scenario (the maximum amount of whole numbers we can select so that none of them have a difference divisible by 7) and then asked to compare the given amount of 15 to the resulting amount. So let's get to it; first we select any number
a1 to begin with. Then we select another number
a2 with the constraint that
a1−a2≡0(mod7). WLOG, assume that in fact,
a1−a2≡1(mod7). Then we pick another number,
a3. Now it is required that
a1−a3≡0(mod7) and also that
a2−a3≡0(mod7). Since we assumed
a2−a1≡1(mod7), that means
a1−a3≡1(mod7). Again, WLOG we can choose
a1−a3≡2(mod7). When will we run out of options? Clearly, after we hit
a1−a7≡6(mod7) in our current selection algorithm, we have no more options. The next step would be
a1−a8≡7(mod7), but that simplifies to
a1−a8≡0(mod7) which contradicts our constraint. Therefore, if we select 8 or more of such dice, we know that at least one of the numbers must be congruent to another one modulo 7. Since we have a whopping 15 numbers instead of just 8, we now know that not only must one number be congruent to another mod 7, but even that there is at least one
triplet such that all of the three are congruent to one another. Hence we've concluded our proof: when we select 15 numbers out of 100 whole numbers randomly, we will always select them so that at least one pair has a difference divisible by 7.