practice problems pending
Problem 1. Let (a) be a positive real number. Prove that one of the positive real numbers [ a,;2a,;3a,...;(n-1)a ] is at most (1/n) distant from a positive integer. S1. Let's test for n = 2 The list is simply: 'a'. And any real positive number is at most 1/2 away from a positive integer. So it works for n = 2. Let 1 <= k <= n-1. We want to show that at least one k.a is at most 1/n away from a positive integer. Let {k.a} be the fractional part of k.a. Distance of {k.a} from a positive integer is min( {ka}, 1 - {ka}). To understand, see the number line: 0______{ka}_______1 Its distance from 0 is {ka} and 1 - {ka} from 1. Let's prove by contradiction. Let's say for each 'k', 1 <= k <= n-1, {k.a}is more than 1/n away from the nearest integer. Like this: 0___1/n___{ka}___1 - 1/n____1 So {ka} is always between 1/n and (n-1)/n. Distance between 1/n and (n-1)/n is (n-2)/n. So there are (n-2) gaps each of length 1/n. Using pigeonhole argument, fraction...