2019 Individual #24
Source:
May 1, 2022
2019 Individual
Problem Statement
Regular hexagon has area . Starting with edge and moving clockwise, a new point is drawn exactly one half of the way along each side of the hexagon. For example, on side , the new point, , is drawn so . This forms hexagon , as shown. What is the area of this new hexagon?
[asy]
size(120);
pair A = (-1/2, sqrt(3)/2);
pair B = (1/2, sqrt(3)/2);
pair C = (1,0);
pair D = (1/2, -sqrt(3)/2);
pair EE = (-1/2, -sqrt(3)/2);
pair F = (-1,0);
pair G = (A+B)/2;
pair H = (B+C)/2;
pair I = (C+D)/2;
pair J = (D+EE)/2;
pair K = (EE+F)/2;
pair L = (F+A)/2;
draw(A--B--C--D--EE--F--cycle);
draw(G--H--I--J--K--L--cycle);
dot(A^^B^^C^^D^^EE^^F^^G^^H^^I^^J^^K^^L);
label("",A,NW);
label("",B,NE);
label("",C,E);
label("",D,SE);
label("",EE,SW);
label("",F,W);
label("",G,N);
label("",H,NE);
label("",I,SE);
label("",J,S);
label("",K,SW);
label("",L,NW);
[/asy]