12
$\begingroup$

How can we prove, without using the properties of binomial coefficients, the product of n consecutive integers is divisible by n factorial?

  • 0
    @Moron: If you choose to "penalize" someone who made an honest mistake by refusing to answer their question then that is certainly your prerogative. But I am here first and foremost to share my knowledge of mathematics by answering questions. So please do refrain from telling me what to do in that regard.2010-11-27

4 Answers 4

15

You could argue by induction on $n$. The result is obvious if $n=1$.

For the inductive step, assume that $(n-1)!$ divides any product of $n-1$ consecutive integers. Now consider products of $n$ consecutive integers.

Say your product is $P(k)=(k+1)(k+2)\dots(k+n)$. First, you may assume $k\ge0$: If one of the factors $k+j$ is 0, then $P(k)=0$ and obviously $n!$ divides it. If $k+n=-t-1<0$, this is the same as $(-1)^n(t+1)(t+2)\dots(t+n)=(-1)^nP(t),$ and $t\ge0$.

Now argue by induction on $k$. The result clearly holds if $k=0$, since $P(0)=n!$.

Suppose $n!|P(k)$. Then $P(k+1)=(k+2)(k+3)\dots(k+n+1)$. Split the last factor as $(k+1)+n$. We have $P(k+1)=[(k+2)\dots(k+n)](k+1)+[(k+2)\dots(k+n)]n.$ The first summand is $P(k)$, which is divisible by $n!$ by the inductive assumption on $k$. The second summand is $n$ times a product of $n-1$ consecutive integers, thus $n$ times a multiple of $(n-1)!$, by the inductive assumption on $n$. Clearly, $n$ times a multiple of $(n-1)!$ is a multiple of $n!$, and the sum of two multiples of $n!$ is a multiple of $n!$, so $n!|P(k+1)$.

We are done by induction.

  • 0
    The argument is an induction on $n $. The proof states this explicitly.2017-08-09
4

There is an alternate proof at the following link which uses the result about the highest power of a prime dividing a factorial (scroll down for the proof)

http://2000clicks.com/MathHelp/BasicFactorialConsecutiveIntegerProducts.aspx

  • 0
    At the core, that's the same proof I give in my link, but it lacks the illuminating way of viewing it as a simple rearrangement of fractions. I devised that presentation to make the proof so simple that it can be understood by elementary school students.2010-11-27
3

Since this statement is equivalent to the fact that binomial coefficients are integral it is a bit tricky to make precise the notion of a proof that does not "use properties of binomial coefficients". I will interpret this proviso to mean that the proof is not essentially combinatorial, i.e. it does not employ properties that are immediate from the combinatorial interpretation of binomial coefficients.

In my post here you'll find a purely arithmetical proof that $\rm\: n!\: $ divides the product of $\rm\:n\:$ consecutive integers. The proof shows how to rewrite the associated fraction as a product of fractions whose denominators are all coprime to any given prime $\rm\:p\:$. This implies that no primes divide the denominator (when written in lowest terms), hence the fraction is an integer.

The key property that lies at the heart of this proof is that, among all products of $\rm\: n\:$ consecutive integers, $\rm\ n!\ $ has the least possible power of $\rm\:p\:$ dividing it - for all primes $\rm\:p\:$. Thus $\rm\ n!\ $ divides every product of $\rm\:n\:$ consecutive integers, since it has a smaller power of every prime divisor.

  • 0
    Thank you for the attention you gave to the questions I proposed. I agree with everything you said. I also thank the other participants. Thank you!2010-11-27
3

Let's define $P(n,k) = \frac{\prod\limits_{i=1}^{n}(k+i)}{n!}$

If one of the numbers is zero, the product is zero which is divisable by $n!$

If $k < -n < 0$ then, $P(n,k) = (-1)^nP(n,-k-n)$

As such it suffices to prove this for non-negative $k$.

Induction:

Base case:

If $n+k = 1$ then $P(n,k) = 0 \in \mathbb{N}$

Inductive step:

Suppose that $P(n,k) \in \mathbb{N}$ for all $n+k = z$

Then for any $P(n,k)$ with $n+k = z+1$, $$\begin{gather} P(n,k) = \frac{\prod\limits_{i=1}^{n}(k+i)}{n!}\\ =(k+n)\frac{\prod\limits_{i=1}^{n-1}(k+i)}{n!} \\ =k\frac{\prod\limits_{i=1}^{n-1}(k+i)}{n!} + n\frac{\prod\limits_{i=1}^{n-1}(k+i)}{n!}\\ =\frac{\prod\limits_{i=1}^{n}((k-1)+i)}{n!} + \frac{\prod\limits_{i=1}^{n-1}(k+i)}{(n-1)!}\\ =P(n,k-1) + P(n-1,k) \end{gather} $$

Both terms are natural numbers and hence $P(n,k) \in \mathbb{N}$. This completes the induction and the proof.