Category:Related sets of 3-bit Walsh permutations; heptagon

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search
This category is an image set. It should contain only images that have the same style, and should have a parent category that is purely topical.
Two inverse permutations in conjugacy classes 7a and 7b
Another pair of inverse permutations
The cycle on the left is the same as in the Heawood graph shown below.
Heawood graph

The heptagon cycle in these images is always shown with counter-clockwise arrows (like in the permutation matrix).
(The base edge is always the red one changing all 3 bits. The green arrows change 1, and the yellow arrows change 2 bits.)

Heptagon edges are marked with the bitwise XOR of the vertex numbers.
These edge marks are connected to the vertex with the same number.
When the halves of each arrow are interpreted as edges, this is the Heawood graph.

There are two chiral variants of the resulting heptagram pattern. It is the same for permutations in the same conjugacy class.
This leads to the following definition of these two conjugacy classes:

Let be the cycle of permutation , and let be any integer.
Then is in conjugacy class .

The variables a, b in the following Python code are the cycles of the example permutations.
The expressions below are true for any n.

a = [1, 2, 4, 5, 7, 3, 6]
b = [1, 6, 3, 7, 5, 4, 2]

a[n % 7] == a[(n+2) % 7] ^ a[(n+3) % 7]
b[n % 7] == b[(n-2) % 7] ^ b[(n-3) % 7]

Subcategories

This category has the following 2 subcategories, out of 2 total.

Media in category "Related sets of 3-bit Walsh permutations; heptagon"

The following 4 files are in this category, out of 4 total.