In how many ways are we able to arrange $k$ identical non-overlapping dominoes on a circle of $2n$ labelled vertices?
The problem can be reduced to the number of ways to choose $k$ non-consecutive vertices from the $2n$ labelled vertices,and now there are two cases,assuming we are arranging these $k$ identical dominoes counterclockwise:
If vertex $1$ in included,then the adjacent vertex (from the left) cannot be chosen,since the dominoes are non-overlopping,so we are left with the other $2n-2$ vertices and we want to choose $k-1$ nonconsecutive vertices ,this can be done in $\binom{2n-2-(k-1)+1}{k-1}=\binom{2n-k}{k-1}$ ways.
If vertex $1$ in not included,so we are left with the other $2n-1$ vertices and we want to choose $k$ nonconsecutive vertices ,this can be done in $\binom{2n-1-k+1}{k}=\binom{2n-k}{k}$ ways.
Now summing these two cases gives the answer.
I'm not sure about the proof,besides dos it make difference if we do the process clockwise?