The following is from FiveThirtyEight.com’s Riddler:
I have an unlabeled, six-sided die. I make a single mark on the middle of each face that is parallel to one pair of that face’s four edges [see example in the figure below]. How many unique ways are there for me to mark the die? (Note: If two ways can be rotated so that they appear the same, then they are considered to be the same marking.)
I think this is a particularly nice potential exercise for students for the usual reasons: on the one hand, wearing our mathematician hat, we can apply the lemma that is not Burnside’s… but this problem makes us think a bit harder about the coloring (i.e., how does each particular “color” represent an oriented mark on the die?), and about the distinction between the group of symmetries acting on the faces of the die versus the colorings of the faces of the die.
Alternatively, wearing our programmer hat, we can solve the problem (or maybe just verify our cocktail napkin approach above) by brute force enumeration of all possible markings, and count orbits under rotation with the standard trick of imposing some easy-to-implement ordering on the markings (converting each to its minimal representation under all possible rotations)… but again, what data structure should we use to represent a marking, that makes it easy to both enumerate all possibilities, and to compute orbits under rotation?
Following is my solution: we count the number of possible markings (“colorings”) that are fixed by each of the 24 rotational symmetries of the die, and average the results. To clarify the description of rotations, let’s temporarily distinguish one “red” face of the die, and group rotations according to the final location of the red face:
- If the red face stays in its original location, then:
- The identity leaves all
markings fixed.
- Either of two quarter turns about the (axis normal to the) red face leaves zero markings fixed (since it changes the marking on the red face itself).
- A half turn about the red face leaves
markings fixed.
- The identity leaves all
- If we rotate the red face a quarter turn to one of the four adjacent locations, then:
- No additional rotation leaves zero markings fixed.
- Either of two additional quarter turns about the (new axis normal to the) red face leaves
markings fixed.
- An additional half turn about the new red face leaves
markings fixed.
- Finally, if we rotate the red face a half turn to the opposite face, then:
- No additional rotation leaves
markings fixed.
- Either of two additional quarter turns about the new red face leaves
markings fixed.
- An additional half turn about the new red face leaves
markings fixed.
- No additional rotation leaves
Putting it all together, the number of distinguishable ways to mark the die is

The figure above shows the eight distinct ways to mark the die. Rather than “unfolding” the dice to explicitly show all six faces of each, the marks are colored red or blue, so that marks on opposing faces– one visible, one hidden– are the same color, with blue indicating parallel opposing marks, and red indicating skew, or “perpendicular,” opposing marks.


