10

I recently came across the following:

Fix an odd $k\in\mathbb{N}$. Then for all even $n\in\mathbb{N}, \binom{n}k \text{ is even.}$

I'd like to complete my attempted proof by induction (see below), although other arguments are equally welcomed.

Proof attempt

Let $k\in\mathbb{N}$ with $k$ odd.

$\underline{\text{Base Case:}}$ [n=2] Then $\binom{n}k=\binom{2}k$. If $k=1$, then $\binom{2}1=2$ is even. If $k>1$, then $\binom{2}k=0$, which is also even.

$\underline{\text{Induct:}}$ Let $n\in\mathbb{N}$ be even. Assume that $\binom{n}k$ is also even. Say, $\binom{n}k=2l$ for some $l\in\mathbb{N}$. We'll show $\binom{n+2}k$ is even. Consider,

$$ \begin{aligned} \binom{n+2}k&=\frac{(n+2)!}{k![(n+2)-k]!}\\[10pt] &=\frac{(n+2)(n+1)n}{k![(n-k)+2][(n-k)+1](n-k)!}\\[10pt] &=\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}\cdot\frac{n!}{k!(n-k)!}\\[10pt] &=\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}\cdot 2l \end{aligned} $$

I suppose if one can show that $\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}$ is a natural number, they'd be done. However, I'm unsure how to do this, and I'm not entirely convinced it's always true. Suppose $n=6$ and $k=3$, then: $$\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}=\frac{8\cdot 7}{5\cdot 4}=\frac{14}{5}$$ which is certainly not a natural number. This leads me to believe there's an error in my reasoning, but I cannot see where I went wrong.

  • 1
    For the inductive step we could use a counting approach. – user Jan 03 '24 at 08:25
  • 1
    Hint: Use recurrence relation for ${n+2}\choose{k+2}$ – Egor Ivanov Jan 03 '24 at 08:34
  • If you really want to prove this algebraically, you have to prove your binomial coefficient is divisible by nominator of conducted fraction and result is still even after division. Easier use Legendre formula or combinatoric interpretation like friend above
  • – Adam Wrzesiński Jan 03 '24 at 08:34
  • 1
    Odd/even decision for binomial coefficients is easy. Write both $n$ and $k$ in base $2$: $$n=\sum_{i=0}^m n_i2^i,\quad k=\sum_{i=0}^m k_i2^i,$$ where $n_i,k_i\in{0,1}$ for all $i$. Then $\binom n k$ is odd if and only if $n_i\ge k_i$ for all $i$. For example with $n=6=110_2$ and $k=3=011_2$ the least significant bits fail as $n_0=0<k_0=1$. Indeed, $\binom 6 3=15$ is odd. Something similar holds for other primes $p$ (not only $p=2$). It follows from Lucas's theorem. I jotted down a proof here. – Jyrki Lahtonen Jan 04 '24 at 06:53
  • 1
    (cont'd) Arguably Lucas is overkill for the purposes of your task. I just think it is kinda neat. See also robjohn's answer below. Kummer's theorem enhances Lucas's in the cases where we want to know the power of a prime dividing a binomial coefficient. – Jyrki Lahtonen Jan 04 '24 at 06:55