Is it true that $ \binom{n}{k}^2 \le \binom{n^2}{k} $?
I checked this for $k=1,n-1,n-2$. Is there an easy way to prove this for general $1 \le k \le n-1$?
Is it true that $ \binom{n}{k}^2 \le \binom{n^2}{k} $?
I checked this for $k=1,n-1,n-2$. Is there an easy way to prove this for general $1 \le k \le n-1$?
On
We need to prove that $$\frac{\prod\limits_{i=0}^{k-1}(n^2-i)}{k!}\geq\frac{\prod\limits_{i=0}^{k-1}(n-i)^2}{(k!)^2}$$ or $$\prod_{i=0}^{k-1}\frac{(n-i)^2}{n^2-i}\leq k!$$ or $$\prod_{i=0}^{k-1}\frac{(n-i)^2}{n^2-i}\leq \prod_{i=0}^{k-1}(i+1),$$ for which it's enough to prove that $$\frac{(n-i)^2}{n^2-i}\leq i+1,$$ which is $$i(n^2+2n-2i-1)\geq0,$$ which is obvious.
We have $$ \binom{n}{k}^2 = \frac{n^2(n-1)^2\cdots(n-k+1)^2}{k!^2}\\ \binom{n^2}{k} = \frac{n^2(n^2-1)(n^2-2)\cdots(n^2-k+1)}{k!} $$ and we observe the following two things:
So the first fraction has a smaller numerator and a larger denominator than the second, which makes it clear that the fraction itself is also smaller.
Edit: Combinatorial proof
Take an $n\times n$ square grid of cells. Then $\binom{n^2}k$ is the number of ways to pick $k$ of those cells, without any restrictions.
Now, let's impose the restriction that no chosen cell can be in the same row or column as another chosen cell. That reduces the possible number of ways to choose. And let's instead just care about which rows and which columns have a chosen cell somewhere in them. That's even fewer, since any given arrangement of $k$ rows and $k$ columns corresponds to a number of different choices of cells ($k!$ different choices, to be exact).
The number of ways to choose $k$ rows and $k$ columns is $\binom nk^2$.