2000 AMC 12 Problems/Problem 25
Contents
Problem
Eight congruent equilateral triangles, each of a different color, are used to construct a regular octahedron. How many distinguishable ways are there to construct the octahedron? (Two colored octahedrons are distinguishable if neither can be rotated to look just like the other.)
import three; import math; unitsize(1.5cm); currentprojection=orthagraphic(2,0.2,1); triple A=(0,0,1); triple B=(sqrt(2)/2,sqrt(2)/2,0); triple C=(sqrt(2)/2,-sqrt(2)/2,0); triple D=(-sqrt(2)/2,-sqrt(2)/2,0); triple E=(-sqrt(2)/2,sqrt(2)/2,0); triple F=(0,0,-1); draw(A--B--E--cycle); draw(A--C--D--cycle); draw(F--C--B--cycle); draw(F--D--E--cycle,dotted+linewidth(0.7)); (Error making remote request. Unknown error_msg)
Solution 1
We consider the dual of the octahedron, the cube; a cube can be inscribed in an octahedron with each of its vertices at a face of the octahedron. So the problem is equivalent to finding the number of ways to color the vertices of a cube.
Select any vertex and call it ; there are color choices for this vertex, but this vertex can be rotated to any of locations. After fixing , we pick another vertex adjacent to . There are seven color choices for , but there are only three locations to which can be rotated to (since there are three edges from ). The remaining six vertices can be colored in any way and their locations are now fixed. Thus the total number of ways is .
Though the cube may be easier to think about, the octahedron can be directly considered. Since the octahedron is indistinguishable by rotations, without loss of generality fix a face to be red.
There are ways to arrange the remaining seven colors, but there still are three possible rotations about the fixed face, so the answer is .
Solution 2
There are 8! ways to place eight colors on a fixed octahedron. An octahedron has six vertices, of which one can face the top, and for any vertex that faces the top, there are four different triangles around that vertex that can be facing you. Thus there are 6*4 = 24 ways to orient an octahedron, and
See also
2000 AMC 12 (Problems • Answer Key • Resources) | |
Preceded by Problem 24 |
Followed by Last question |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | |
All AMC 12 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.