CUBES LOOK cOoL
Source: 2024 AMC 8 Problem 20
January 26, 2024
AMC 8geometry3D geometry2024 AMC 8
Problem Statement
Any three vertices of the cube shown in the figure below, can be connected to form a triangle. For example, vertices and can be connected to form How many of these triangles are equilateral and contain as a vertex?
[asy]
unitsize(4);
pair P,Q,R,S,T,U,V,W;
P=(0,30); Q=(30,30); R=(40,40); S=(10,40); T=(10,10); U=(40,10); V=(30,0); W=(0,0);
draw(W--V); draw(V--Q); draw(Q--P); draw(P--W); draw(T--U); draw(U--R); draw(R--S); draw(S--T); draw(W--T); draw(P--S); draw(V--U); draw(Q--R);
dot(P);
dot(Q);
dot(R);
dot(S);
dot(T);
dot(U);
dot(V);
dot(W);
label("",P,NW);
label("",Q,NW);
label("",R,NE);
label("",S,N);
label("",T,NE);
label("",U,NE);
label("",V,SE);
label("",W,SW);
[/asy]