2025 AIME I Problems/Problem 2
Problem
In points
and
lie on
so that
, while points
and
lie on
so that
. Suppose
,
,
,
,
, and
. Let
be the reflection of
through
, and let
be the reflection of
through
. The area of quadrilateral
is
. Find the area of heptagon
, as shown in the figure below.
[asy]
unitsize(14);
pair A = (0, 9), B = (-6, 0), C = (12, 0), D = (5A + 2B)/7, E = (2A + 5B)/7, F = (5A + 2C)/7, G = (2A + 5C)/7, M = 2F - D, N = 2E - G;
filldraw(A--F--N--B--C--E--M--cycle, lightgray);
draw(A--B--C--cycle);
draw(D--M);
draw(N--G);
dot(A);
dot(B);
dot(C);
dot(D);
dot(E);
dot(F);
dot(G);
dot(M);
dot(N);
label("", A, dir(90));
label("
", B, dir(225));
label("
", C, dir(315));
label("
", D, dir(135));
label("
", E, dir(135));
label("
", F, dir(45));
label("
", G, dir(45));
label("
", M, dir(45));
label("
", N, dir(135));
[/asy]