7

If we have $n$ consecutive integers, then one of these integers is divisible by $n$. Prove the above statement.

Sandeep
  • 71

5 Answers5

11

HINTS: Let the integers be $m,m+1,\dots,m+n-1$. If $m$ is a multiple of $n$, you’re done. If not, write $m=qn+r$, where $q$ and $r$ are integers, and $0<r<n$. Here $q$ and $r$ are just the quotient and remainder when you divide $m$ by $n$. Let $c=n-r$.

  1. Is $m+c$ one of the $n$ consecutive integers? In other words, is it true that $0\le c<n$?

  2. Is $m+c$ divisible by $n$? Why?

Brian M. Scott
  • 616,228
  • Please forgive my asking, but did you mean to write $m=qn+r$ (where $0 \le r <n$) in your division equation? Otherwise I don't see how $q$ and $r$ are the quotient and remainder when you divide $m$ by $n$. – EthanAlvaree Apr 16 '15 at 13:17
  • @EthanAlvaree: Thanks. Yes, that second $m$ was a typo. ($0<r$ is right, though.) – Brian M. Scott Apr 16 '15 at 15:09
  • These types of approach just fascinate me. "How u come up with a idea of taking c=n-r" . I know whenever something is let(cleverly) in a proof it is backward strategy to just prove the exact. Please can u tell how u came up with that?? – Riya Verma Jul 02 '19 at 05:08
5

There are $n$ residue classes mod $n$. If you have $n$ consecutive integers, they will fill up all $n$ residue classes. One of them must be in the residue class of things divisible by $n$; i.e. things $=0\pmod{n}$.


Clarification: Let $C_k=\{k+j:0\le j\lt n\}$ be a set of $n$ consecutive integers.

Proposition 1: No two distinct elements of $C_k$ can be in the same residue class mod $n$.

Suppose otherwise: $j_1\lt j_2$ and $$ k+j_1\equiv k+j_2\pmod{n}\tag1 $$ Then $$ j_2-j_1\equiv0\pmod{n}\tag2 $$ which is impossible since $\color{#C00}{j_1\lt j_2}$ and $\color{#090}{k+j_1,k+j_2\in C_k}$ imply $$ 0\color{#C00}{\lt}j_2-j_1\color{#090}{\lt}n\tag3 $$ Proposition 2: For any $m$ some element of $C_k$ is $m\pmod{n}$.

Suppose otherwise: $C_k$ is a subset of the $n-1$ residue classes mod $n$ that are not $m\pmod{n}$. The Pigeonhole Principle says that two elements of $C_k$ must be in the same residue class mod $n$, which Proposition 1 says is impossible.

robjohn
  • 345,667
3

Proof by induction.

For all $i \in \mathbb{N}_{\ge 1},$ let $P(i)$ be the proposition: $$ \exists q \in \mathbb{N}_{\ge 1} \text{ such that } qn \in \{i, i+1, \ldots, i+n-1\}. $$

  1. Base case: $P(1)$ is trivial since $n \in \{1, 2, \ldots, n\}.$

  2. Induction hypothesis: Assume $P(i)$ holds for some $i > 1.$ In other words, there exists some $q$ such that $qn \in \{i, i+1, \ldots, i+n-1 \} \tag{1}$

  3. Induction step: Consider the set $\{i+1, i+2, \ldots, i+n \}.$ The induction hypothesis in equation $(1)$ implies two cases:

    Case I: $i \neq qn,$ i.e. $qn \in \{i+1, \ldots, i+n-1\}.$ Hence $qn \in \{i+1, i+2, \ldots, i+n \}.$ So $P(i+1)$ holds.

    Case II: $i = qn,$ and hence $i+n = n(q+1).$ Since $i+n \in \{i+1, i+2, \ldots, i+n \},$ we have that $P(i+1)$ holds.

    We have just shown that $P(i) \implies P(i+1).$

QED.

1

Hint $\ $ Let $\rm\ a\ $ be the largest in the sequence. $\rm\: mod\ n\!:\ a\equiv r\,\in\, [\:\!0,\:\!n)\:$ so $\rm\:n\ |\ a\!-\!r\,\in\, [\!\:a,\:\!a\!-\!n)$

This has widespread applications, e.g. this proof that $\rm\:n\:|\:(n\!-\!1)!\:$ for composite $\rm\:n.$

Note $\ $ This is just a shifted equivalent of the Division Algorithm, i.e. the following equivalence is true in any euclidean domain $\rm Z\:$ (domain with an algorithm for division with 'smaller' remainder)

$$\begin{array}{rcrlrl} &\rm \exists\!\!\!&\rm q,r \in Z, &\rm\ a\: =\: q\:n + r, \!\!\!\!&\rm |r| \!\!\!&\rm <\ |n| \\ \displaystyle\rm{b\: =\: a\!-\!r\ \atop{\huge\iff\atop\phantom{M}}} &\rm \exists\!\!\! &\rm q,b\in Z, &\rm\ b\: =\: q\:n, \!\!\!\!&\rm |a\!-\!b| \!\!\!&\rm <\ |n| \end{array}\qquad$$

Bill Dubuque
  • 272,048
-1

$\ let \ k,k-1,k-2,....,(k-(n-1)) \ are \ 'n' \ consecutive \ integers.$

$\begin{equation} \begin{aligned} k(k-1)(k-2)(k-3).....(k-(n-1))=& \frac{k(k-1)(k-2)(k-3).....(k-(n-1))(k-n)....1}{(k-n).....1}\\ =&{\frac{k!}{(k-n)!n!}.n!}\\ \end{aligned} \end{equation}$ $$\implies n!|k(k-1)(k-2)....(k-(n-1))$$ $$\implies n|k(k-1)(k-2)....(k-(n-1))$$

  • This is incomplete/wrong. For instance $4$ divides $6 \times 2$, but does not divide either $6$ or $2$. – Aryabhata Apr 06 '12 at 08:03