friendly reminder that equilateral hexagons are not regular
Source: 2021 Fall AMC 12A #14
November 11, 2021
AMCAMC 12AMC 12 A
Problem Statement
In the figure, equilateral hexagon has three nonadjacent acute interior angles that each measure . The enclosed area of the hexagon is . What is the perimeter of the hexagon?
[asy]
size(6cm);
pen p=black+linewidth(1),q=black+linewidth(5);
pair C=(0,0),D=(cos(pi/12),sin(pi/12)),E=rotate(150,D)*C,F=rotate(-30,E)*D,A=rotate(150,F)*E,B=rotate(-30,A)*F;
draw(C--D--E--F--A--B--cycle,p);
dot(A,q);
dot(B,q);
dot(C,q);
dot(D,q);
dot(E,q);
dot(F,q);
label("",C,2*S);
label("",D,2*S);
label("",E,2*S);
label("",F,2*dir(0));
label("",A,2*N);
label("",B,2*W);
[/asy]