-1

Let $p$ be a prime. How do you show that the binomial coefficients $\binom{p}{i}$ are divisible by $p$ for $1\leq i\leq p-1$? And how does this result in the congruency $(x+y)^p\equiv x^p+y^p\pmod p$ for $x,y\in\mathbb{Z}$?

dustin
  • 8,241

1 Answers1

2

For the first part, we have $$\dbinom{p}i = \dfrac{\dbinom{p-1}{i-1} \cdot p}i$$ where $i \in \{2,3,\ldots,p-1\}$. Recall that if $a \mid (bc)$, if $\gcd(a,b) = 1$, then $a \mid c$. Hence, this means $i \mid \dbinom{p-1}{i-1}$, i.e., $\dbinom{p-1}{i-1} = k i$, where $k \in \mathbb{Z}^+$, This in turn gives us that $$\dbinom{p}i = kp \implies p \mid \dbinom{p}i$$


For the second part, we have $$(x+y)^p = x^p + y^p + \sum_{k=1}^{p-1} \dbinom{p}kx^ky^{p-k}$$ From the previous part, we have that $p$ divides $\dbinom{p}k$. This means $$\sum_{k=1}^{p-1} \dbinom{p}kx^ky^{p-k} \equiv 0\pmod{p}$$ Hence, we have that $$(x+y)^p \equiv x^p + y^p \pmod{p}$$

Adhvaitha
  • 20,259