2005 AMC 12A Problems/Problem 25

Revision as of 09:58, 16 February 2009 by 1=2 (talk | contribs) (Solution 2 (rigorous))

Problem

Let $S$ be the set of all points with coordinates $(x,y,z)$, where $x$, $y$, and $z$ are each chosen from the set $\{0,1,2\}$. How many equilateral triangles all have their vertices in $S$?

$(\mathrm {A}) \ 72\qquad (\mathrm {B}) \ 76 \qquad (\mathrm {C})\ 80 \qquad (\mathrm {D}) \ 84 \qquad (\mathrm {E})\ 88$

Solution

Solution 1 (non-rigorous)

For this solution, we will just find as many solutions as possible, until it becomes intuitive that there are no more triangles left.

Take an unit cube. We try to make three of its vertices form an equilateral triangle. This we find is possible by taking any vertex, and connecting the three adjacent vertices into a triangle. This triangle will have a side length of $\sqrt{2}$; a quick further examination of this cube will show us that this is the only possible side length. Each of these triangles is determined by one vertex of the cube, so in one cube we have 8 equilateral triangles. We have 8 unit cubes, and then the entire cube, giving us 9 cubes and $9 \cdot 8 = 72$ equilateral triangles.

[asy] unitsize(0.3inch); import three;  currentprojection=perspective(5,4,3); pointpen = black; pathpen=black; pen l = linewidth(0.5); pen d = linewidth(0.8); int i,j,k; for(i=0;i<=2;++i)  for(j=0;j<=2;++j)   for(k=0;k<=2;++k)    dot((i,j,k)); /* draw in cube edges */ D((0,0,0)--(0,0,2)--(0,2,2)--(0,2,0)--(0,0,0)--(0,2,0)--(2,2,0)--(2,0,0)--(0,0,0)--(2,0,0)--(2,0,2)--(0,0,2)--(0,0,0),l); D((2,2,2)--(0,2,2)--(0,2,0)--(2,2,0)--(2,2,2)--(2,2,0)--(2,0,0)--(2,0,2)--(2,2,2)--(2,0,2)--(0,0,2)--(0,2,2)--(2,2,2),l);  /* draw in equilateral triangle */ D((2,0,2)--(0,0,0)--(2,2,0)--(2,0,2),d); D((0,0,1)--(1,0,2)--(0,1,2)--(0,0,1),d);  /* darken points: D((2,0,2)^^(0,0,0)^^(2,2,0),d); D((0,0,1)^^(1,0,2)^^(0,1,2),d); */ [/asy]

It may be tempting to connect the centers of the faces and to call that a cube, but a quick look at this tells us that that figure is actually an octahedron.

Now, we look for any additional equilateral triangles. Since the space diagonals of the cube cannot make an equilateral triangle, we will assume symmetry in the cube. A bit more searching shows us that connecting the midpoints of three non-adjacent, non-parallel edges gives us more equilateral triangles.

unitsize(0.3inch);
import three; 
currentprojection=perspective(5,4,3); pointpen = black; pathpen=black; pen l = linewidth(0.5); pen d = linewidth(0.8);
int i,j,k;
for(i=0;i<=2;++i)
 for(j=0;j<=2;++j)
  for(k=0;k<=2;++k)
   dot((i,j,k));
/* draw in cube edges */
D((0,0,0)--(0,0,2)--(0,2,2)--(0,2,0)--(0,0,0)--(0,2,0)--(2,2,0)--(2,0,0)--(0,0,0)--(2,0,0)--(2,0,2)--(0,0,2)--(0,0,0),l);
D((2,2,2)--(0,2,2)--(0,2,0)--(2,2,0)--(2,2,2)--(2,2,0)--(2,0,0)--(2,0,2)--(2,2,2)--(2,0,2)--(0,0,2)--(0,2,2)--(2,2,2),l); 
/* draw in equilateral triangle */
D((1,0,0)--(2,2,1)--(0,1,2)--(1,0,0),d);
/* darken points: D((1,0,0)^^(2,2,1)^^(0,1,2),d); */
 (Error making remote request. Unknown error_msg)

Notice that picking these three edges leaves two vertices alone, and that picking any two opposite vertices determine two equilateral triangles. Hence there are $\frac{8 \cdot 2}{2} = 8$ additional equilateral triangles, for a total of $80 \Longrightarrow \mathrm{(C)}$.

Solution 2 (rigorous)

The three dimensional distance formula shows that the lengths of the equilateral triangle must be $\sqrt{d_x^2 + d_y^2 + d_z^2}, 0 \le d_x, d_y, d_z \le 2$, which yields the possible edge lengths of

$\sqrt{0^2+0^2+1^2}=\sqrt{1},\ \sqrt{0^2+1^2+1^2}=\sqrt{2},\ \sqrt{1^2+1^2+1^2}=\sqrt{3},$ $\ \sqrt{0^2+0^2+2^2}=\sqrt{4},\ \sqrt{0^2+1^2+2^2}=\sqrt{5},\ \sqrt{1^2+1^2+2^2}=\sqrt{6},$ $\ \sqrt{0^2+2^2+2^2}=\sqrt{8},\ \sqrt{1^2+2^2+2^2}=\sqrt{9},\ \sqrt{2^2+2^2+2^2}=\sqrt{12}$

Some casework shows that $\sqrt{2},\ \sqrt{6},\ \sqrt{8}$ are the only lengths that work, from which we can use the same counting argument as above.

See Math Jam solution.

See also

2005 AMC 12A (ProblemsAnswer KeyResources)
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