[Math] How many different dice exist? That is, how many ways can you make distinct dice that cannot be rotated to show they are the same

combinatoricsdice

Dice are cubes with pips (small dots) on their sides, representing
numbers 1 through 6. Two dice are considered the same if they can be
rotated and placed in such a way that they present matching numbers on
the top, bottom, left, right, front, and back sides.

Below is an example of two dice that can be rotated to show that they
are the same if the 2-pip and 4-pip sides are opposite and the 3-pip
and 5-pip sides are also opposite.
https://www.dropbox.com/s/6q56njm11hu3f36/Screenshot%202015-08-18%2012.02.11.png?dl=0

How many different dice exist? That is, how many ways can you make
distinct dice that cannot be rotated to show they are the same? Note:
This problem does not involve rolling the dice or the probability of
roll outcomes.

I'm having trouble understanding exactly what is being asked in this question. I understand that I have to find how many different ways the dice can be placed to show that they are the same, but saying they cannot be rotated confuses me.

Could somebody make an attempt at rewording this? Or walking me through how to solve this?

Best Answer

I won't give you an actual answer, and this post is not a hint to solve the given question, but I will suggest a way that you can simplify the problem in order to understand better what's being asked.

(By the way, that's often a very useful approach, that is, simplifying the problem to get a better understanding of it)

Say you have a square and you assign numbers to the edges, in a clockwise manner, starting from the top edge. There are 4! = 24 different assignments you could make. Here are a few examples: 1234, 3241, 1324, 4123, 4321, and so on.

Now, note that the assignments 1234, 2341, 3412, and 4123 don't actually represent different squares because you could rotate them to match one another. You could put them into a grouping of their own. On the other hand, 1234 and 1324 are different assignments in the sense that no matter how you rotate either of the resulting squares, you won't be able to make them match. So, 1234 and 1324 must belong to different groupings.

What the question about the dice is asking is how many such groupings there are, but with a cube and its faces, instead of a square and its edges. Note that you can rotate a cube in more ways than you can rotate a square.


Edit: Based on the comment exchange below, here's the brute-force solution for the analogous problem with triangles. It's brute-force because I'm actually listing all the possible assignments and explicitly testing if they're pairwise equivalent or not. You will not want to do that in the dice problem. That's not how you want to solve that problem. I'm only brute-forcing the solution here to make it easier for you to understand what the problem is asking.

You can divide the 3! = 6 possible assignments into only 2 groups where every assignment in one group is equivalent to the other assignments in the same group but different from all assignments in the other group. The solution to "how many such groups are there?" is, then, 2. One is coloured blue, the other red in the figure below.

enter image description here


Hint #1 In the case of 6-sided dice, if all the dice have opposite sides adding up to 7 (1 opposite to 6, 2 opposite to 5, 3 opposite to 4) then there are only 2 groups. Try to prove that result, then look at the case when opposite faces don't have to add up to 7. How many of those cases are there in total?


Hint #2 So, if you fix the top and bottom numbers, you get 2 groups (that's the result of hint #1 above). In how many ways can you fix the top and bottom numbers?