The number of $k$-subsets of $[n]$ is given by the formula $\binom{n}{k}$ or $^nC_k$. They famously occur in the expansion of $(1+x)^n$ and they are given by the formula $$\binom{n}{k}=\frac{n!}{(n-k)!k!}$$
Using this formula, it is easy to prove the inequality that $\binom{n}{k}>\binom{n}{k-1}$ for large enough $n \in \mathbb{N}$. What this inequality says is that the number of ways of choosing $k-1$-subsets is eventually smaller than the number of ways of choosing $k$-subsets of $[n]$.
One more way of showing this is by observing that $\binom{n}{k}$ is a polynomial in $n$ of degree $k$ and then, we can see that it will outgrow $\binom{n}{k-1}$ which is a lower degree polynomial in $n$.
Is there a more natural way of seeing this inequality without the use of calculations with the use of something more combinatorial-like? Possibly by exhibiting an injection between the $k-1$-subsets and $k$-subsets? Or by another interpretation of the numbers where it is easier to get such an injection? Or something else altogether?
$\mathbf{Remark}$: My supervisor mentioned almost immediately that there was a way to see this using Symmetric Chain Decomposition. But I do not have the luxury of spending that much time on this. I apologise. I would be thankful if you could provide a proof based on the same.
$\mathbf{Tl;dr}: $ What I am looking for is something more along the lines of bijections or a different interpretation of the binomial coefficients that makes the inequality easier to see. I hope the approach doesn't rely heavily on calculations and at the same time, explains why the the inequality reverses for small $n$.
Thank you, in advance.
If you assume $n > 2k - 1$ (and hence $n-k+1 > k$), I think you can use a double counting argument. Consider the following sets :
$$\mathcal{A} = \{(x, A) \in [n] \times \mathcal{P}([n]), |A| = k, \, x \in A\}$$ and $$\mathcal{B} = \{(x, B) \in [n] \times \mathcal{P}([n]), |B| = k-1, \, x \notin B\}$$ We have $|\mathcal{A}| = k \times \binom{n}{k} $ and $|\mathcal{B}| = (n-k+1) \times \binom{n}{k-1}$
But the function $f : \mathcal{A} \to \mathcal{B}$ defined by $f(x,E) = (x, E \setminus \{x\})$ is a bijection (the reciprocal is given by $f^{-1}(x,F) = (x, F \cup \{x\})$). So
$$k \times \binom{n}{k} = (n-k+1) \times \binom{n}{k-1} > k \times \binom{n}{k-1}$$
Which gives you the desired inequality.
Note : another way to look at it is that we're double counting the set $$\mathcal{C} = \{(A,B) \in \mathcal{P}_k([n]) \times \mathcal{P}_{k-1}([n]), \ B \subset A\}$$ either line by line or column by column.