Each vertex of a cube is to be labeled with an integer from 1 through 8, with each integer being used once, in such a way that the sum of the four numbers on the vertices of a face is the same for each face. Arrangements that can be obtained from each other through rotations of the cube are considered to be the same. How many different arrangements are possible?
立方体的每个顶点要标上从 1 到 8 的整数,每个整数恰好使用一次,并且要求立方体每个面的四个顶点上的数字之和对所有面都相同。通过旋转立方体可以互相得到的标号方式视为同一种。问一共有多少种不同的标号方式?
Answer (C): The sum of the four numbers on the vertices of each face must be $\frac{1}{6}\cdot 3\cdot(1+2+\cdots+8)=18$. The only sets of four of the numbers that include 1 and have a sum of 18 are $\{1,2,7,8\}$, $\{1,3,6,8\}$, $\{1,4,5,8\}$, and $\{1,4,6,7\}$. Three of these sets contain both 1 and 8. Because two specific vertices can belong to at most two faces, the vertices of one face must be labeled with the numbers 1,4,6,7, and two of the faces must include vertices labeled 1 and 8. Thus 1 and 8 must mark two adjacent vertices. The cube can be rotated so that the vertex labeled 1 is at the lower left front, and the vertex labeled 8 is at the lower right front. The numbers 4, 6, and 7 must label vertices on the left face. There are $3!=6$ ways to assign these three labels to the three remaining vertices of the left face. Then the numbers 5, 3, and 2 must label the vertices of the right face adjacent to the vertices labeled 4, 6, and 7, respectively. Hence there are 6 possible arrangements.
答案(C):每个面的四个顶点上的数字之和必须为 $\frac{1}{6}\cdot 3\cdot(1+2+\cdots+8)=18$。包含 1 且和为 18 的四数组合只有 $\{1,2,7,8\}$、$\{1,3,6,8\}$、$\{1,4,5,8\}$、$\{1,4,6,7\}$。其中有三组同时包含 1 和 8。由于任意两个特定顶点最多同属两个面,因此必有一个面的顶点标为 1、4、6、7,并且有两个面必须包含标为 1 和 8 的顶点。因此 1 和 8 必须标在相邻的两个顶点上。可以旋转立方体,使标为 1 的顶点在前方左下,标为 8 的顶点在前方右下。数字 4、6、7 必须标在左侧面的顶点上。将这三个标签分配到左侧面其余三个顶点共有 $3!=6$ 种方法。接着,数字 5、3、2 必须分别标在右侧面上、与标为 4、6、7 的顶点相邻的顶点处。因此共有 6 种可能的排列。