I was reading the solution to a problem which goes like this:
Problem: There is a round table with n chairs. n is even. In each chair there is a person. How many ways are there that each person can handshake with somebody else without two pairs of hands crossing each other. For example if n = 6(six chairs) the answer is 5: the permutations.
Solution:The answer is the n/2th Catalan number.
I know that Catalan numbers are used to represent the number of noncrossing partitions in a set, but I am not sure why the answer is the n/2th Catalan number. Does that mean that the number of noncrossing partitions of size 2 in a set of n points is equal to all the noncrossing partitions in a set of n/2 points? Can someone explain why?