返回题库

AIME 1988 · 第 10 题

AIME 1988 — Problem 10

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

A convex polyhedron has for its faces 12 squares, 8 regular hexagons, and 6 regular octagons. At each vertex of the polyhedron one square, one hexagon, and one octagon meet. How many segments joining vertices of the polyhedron lie in the interior of the polyhedron rather than along an edge or a face?

解析

Solution 1

The polyhedron described looks like this, a truncated cuboctahedron.

AIME diagram

The number of segments joining the vertices of the polyhedron is (482)=1128{48\choose2} = 1128. We must now subtract out those segments that lie along an edge or a face.

Since every vertex of the polyhedron lies on exactly one vertex of a square/hexagon/octagon, we have that V=124=86=68=48V = 12 \cdot 4 = 8 \cdot 6 = 6 \cdot 8 = 48.

Each vertex is formed by the intersection of 3 edges. Since every edge is counted twice, once at each of its endpoints, the number of edges EE is 32V=72\frac{3}{2}V = 72.

Each of the segments lying on a face of the polyhedron must be a diagonal of that face. Each square contributes n(n3)2=2\frac{n(n-3)}{2} = 2 diagonals, each hexagon 99, and each octagon 2020. The number of diagonals is thus 212+98+206=2162 \cdot 12 + 9 \cdot 8 + 20 \cdot 6 = 216.

Subtracting, we get that the number of space diagonals is 112872216=8401128 - 72 - 216 = \boxed{840}.

Solution 2

We first find the number of vertices on the polyhedron: There are 4 corners per square, 6 corners per hexagon, and 8 corners per octagon. Each vertex is where 3 corners coincide, so we count the corners and divide by 3. vertices=124+86+683=48\text{vertices} = \frac{12 \cdot 4 + 8 \cdot 6 + 6 \cdot 8}{3}=48.

We know that all vertices look the same (from the problem statement), so we should find the number of line segments originating from a vertex, and multiply that by the number of vertices, and divide by 2 (because each space diagonal is counted twice because it has two endpoints).

Counting the vertices that are on the same face as an arbitrary vertex, we find that there are 13 vertices that aren't possible endpoints of a line originating from the vertex in the middle of the diagram. You can draw a diagram to count this better:

AIME diagram

Since 13 aren't possible endpoints, that means that there are 35 possible endpoints per vertex. The total number of segments joining vertices that aren't on the same face is 483512=2435=84048\cdot 35\cdot \frac 12 = 24 \cdot 35 = \boxed{840}

~breakingbread

Solution 3

Since at each vertex there is one square, one hexagon, and one octagon that meet, then there are a total of 124=86=68=4812 \cdot 4 = 8 \cdot 6 = 6 \cdot 8 = 48 vertices. This means that for each segment we have 4848 choices of vertices for the first endpoint of the segment.

Since each vertex is the meeting point of a square, octagon, and hexagon, then there are 33 other vertices of the square that are not the first one, and connecting the first point to any of these would result in a segment that lies on a face or edge.

Similarly, there are 55 points on the adjacent hexagon and 77 points on adjoining octagon that, when connected to the first point, would result in a diagonal or edge.

However, the square and hexagon share a vertex, as do the square and octagon, and the hexagon and octagon.

Subtracting these from the 4747 vertices we have left to choose from, and adding the 33 that we counted twice, we get

48(47357+3)=4835=168048 \cdot (47 - 3 - 5 - 7 + 3) = 48 \cdot 35 = 1680 We over-counted, however, as choosing vertex AA then BB is the same thing as choosing BB then AA, so we must divide 1680/2=8401680 / 2 = \boxed{840}.

Alternatively, we could have noted from the diagram:

AIME diagram

Our first choice would be the vertex in the middle (there are 4848 of these), and our second choice would be any of the remaining 47 points minus the 12 that share a face without chosen vertex. Summing these we get

48(4712)=168048 (47 - 12) = 1680 And we divide by 22 as before to get 840\boxed{840}

Solution 4

In the same ways as above, we find that there are 48 vertices. Now, notice that there are (482)\binom{48}{2} total possible ways to choose two vertices. However, we must remove the cases where the segments do not lie in the interior of the polyhedron. We get

(482)12(42)8(62)6(82)=768\binom{48}{2}-12\binom{4}{2}-8\binom{6}{2}-6\binom{8}{2}=768 We remover all the possible edges of the squares, hexagons, and octagons. However, we have undercounted! We must add back the number of edges because when we subtracted the three binomials from (482)\binom{48}{2} we removed each edge twice (each edge is shared by two polygons). This means that we need to add back the number of edges, 72. Thus, we get 768+72=840768+72=\boxed{840}.

Solution 5

We can also use Euler's formula to find the number of vertices. For any polyhedron, it holds that VE+F=2V - E + F = 2. There are 12+8+6=2612 + 8 + 6 = 26 faces. Additionally, the shapes in total have 412+68+86=1444 \cdot 12 + 6 \cdot 8 + 8 \cdot 6 = 144 edges. At an edge of the polyhedron, exactly two of these edges coincide, so we divide by 22 to get 1442=72\frac{144}{2} = 72. Plugging in our numbers, we have that V72+26=2V - 72 + 26 = 2. When solved, this gives V=48V = 48. Proceed using any of the methods above.

~ cxsmi