I came across this well known problem that goes something like this.
If $n$ people shake hands with each other. How many handshakes will be there in total?
The question can be interpreted as asking about the number of edges in a complete graph of with $n$ vertices, which will be $n \choose 2 $.
What if the question was changed to something more tricky?
If $n$ people take turns playing board games with each other. Each game needs exactly $k$ players to play. How many games are needed for everyone to have played a game with everyone else?
As you can see, for the case of $k=2$ this would be equivalent to the previous handshake problem.
I initially thought the answer would be $ n \choose k$, but in the case of $n = 6$ and $ k= 4$ , I can make everyone play everyone with just 3 games.
If the players are labeled $[1 .. n]$
$$ \text{Game 1: } {1,2,3,4} \\\text{Game 2: } {3,4,5,6} \\\text{Game 3: } {1,2,5,6} $$
Since $ {6 \choose 4} \neq 3 $, this cannot be the answer. The binomial is counting all possible games even when getting everyone to play each is possible with less games.
I suspect that considering the games as hyperedges of k-uniform hypergraph is the best way to approach this problem, but I lack any formal math training beyond high-school math, so I don't know where to start. I've tried doing some googling (which is how I know what a hypergraph is), but I've haven't gotten anywhere.