2023 SSMO Team Round Problems/Problem 15

Revision as of 22:24, 15 December 2023 by Pinkpig (talk | contribs) (Created page with "==Problem== Consider a piece of paper in the shape of a regular pentagon with sidelength <math>2.</math> We fold it in half. We then fold it such that the vertices of the long...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problem

Consider a piece of paper in the shape of a regular pentagon with sidelength $2.$ We fold it in half. We then fold it such that the vertices of the longest side become the same side. The area of the folded figure can be expressed as $\frac{1}{a}\sqrt{b + c\sqrt{5}}$ where $a, b, c$ are integers and $\gcd(b, c)$ is squarefree. Find $a + b + c.$ (For convenience, note that $\cos(36^\circ) = \frac{1 + \sqrt{5}}{4}$)

[asy]  /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki go to User:Azjps/geogebra */ real xmin = -2.464957433726653, xmax = 3.328270917519617, ymin = -1.0176780156925203, ymax = 3.975434729820146;  /* image dimensions */   /* draw figures */ filldraw((0,0)--(2,0)--(2.618033988749895,1.9021130325903064)--(1,3.077683537175253)--(-0.6180339887498947,1.9021130325903073)--cycle, opacity(0.4)+lightblue,lightblue);   filldraw((0.3090169943749479,2.853169548885461)--(0.690983005625053,2.853169548885461)--(1.1545084971874735,1.4265847744427302)--(-0.30901699437494734,0.9510565162951536)--(-0.6180339887498947,1.9021130325903073)--(0.190983005625053,2.48989828488278)--cycle, opacity(0.4)+palegreen,green);   draw((xmin, 0.32491969623290623*xmin + 1.0514622242382672)--(xmax, 0.32491969623290623*xmax + 1.0514622242382672), dashed); /* line */ draw((xmin, -3.0776835371752562*xmin + 4.979796569765563)--(xmax, -3.0776835371752562*xmax + 4.979796569765563), dashed); /* line */    /* dots and labels */ clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle);   /* end of picture */ [/asy]

Solution