[Math] Proof for the upper bound and lower bound for binomial coefficients.

binomial-coefficients

I have seen the bounds $\left(\frac{n}{k}\right)^k \leq {n \choose k} \leq \left( \frac{en}{k}\right)^k$ for integers $n \geq k >0$ for the binomial coefficient. I can prove the upper bound in this inequality, but I'm missing some detail for the lower bound. Does anyone know some simple way to prove this lower bound?

Best Answer

First, we see that for $k=1$ we have a trivial statement $$\left( \frac{n}{k} \right)^k = n \leq n = \binom{n}{k}.$$

Now, consider $k > 1$ and let $0 < m < k \leq n$. Then

$$k \leq n \Rightarrow \frac{m}{n} \leq \frac{m}{k} \Rightarrow 1 - \frac{m}{k} \leq 1- \frac{m}{n} \Rightarrow \frac{k-m}{k} \leq \frac{n-m}{n} \Rightarrow \frac{n}{k} \leq \frac{n-m}{k-m}$$ Hence, $$\left( \frac{n}{k} \right)^k = \frac{n}{k} \cdot \ldots \cdot \frac{n}{k} \leq \frac{n}{k} \cdot \frac{n-1}{k-1} \cdot \ldots \cdot \frac{n-k+1}{1} = \binom{n}{k}.$$

Related Question