3

Possible Duplicate:
Proof that a Combination is an integer

I can't think how to prove that ${n\choose k} \in\mathbb{Z}$.

I've played with it for a while, using the factorial definition for ${n\choose k}$. Must be something to do with factors but I'm struggling to prove.

Thanks.

James
  • 133
  • 1
    Perhaps you should have a look here: http://math.stackexchange.com/questions/11601/proof-that-a-combination-is-an-integer – Martin Sleziak Sep 19 '11 at 15:43

1 Answers1

3

The easiest way is to use the recurrence identity from Pascal triangle

$$ \binom{n+1}{k+1} = \binom{n}{k+1} + \binom{n}{k} $$ and notice that $\binom{0}{0} = 1$, $\binom{n}{0} = \binom{n}{n} = 1$ for $n \in \mathbb{N} \cup \{ 0 \}$.

Sasha
  • 70,631