0

Suppose you have a sequence of unique items, for example:

1, 2, 3, 4, 5

Suppose we have a 'swap' operation whereby you swap any two items in this list. For example, you could get to the following sequences with one swap operation from the start sequence:

2, 1, 3, 4, 5   (swapped 1 and 2)
1, 5, 3, 4, 2   (swapped 2 and 5)
1, 2, 3, 5, 4   (swapped 4 and 5)

If we allow multiple swaps, we find that the set of possible sequences after an even number of swaps is disjoint from the set of possible sequences after an odd number of stops.

Firstly, is there an appropriate terminology when talking about this idea? I can see it's related to group theory but I want a better way of expressing the disjoint between these two sets and the fact we 'jump' between these two sets with each swap.

Secondly, give any permutation of the start sequence, what is the simplest method to determine if it is reached with an even or odd number of swaps?

occulus
  • 279

0 Answers0