2021 WSMO Team Round Problems/Problem 6

Revision as of 22:16, 15 December 2023 by Pinkpig (talk | contribs) (Created page with "==Problem== Suppose that regular dodecagon <math>ABCDEFGHIJKL</math> has side length <math>5.</math> The area of the shaded region can be expressed as <math>a+b\sqrt{c},</math...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problem

Suppose that regular dodecagon $ABCDEFGHIJKL$ has side length $5.$ The area of the shaded region can be expressed as $a+b\sqrt{c},$ where $c$ is not divisible by the square of any prime. Find $a+b+c$.

[asy] size(150); filldraw(polygon(12),grey);  filldraw(rotate(75)*(dir(60)--dir(150)--dir(240)--dir(330)--cycle),white);  for(int i=30; i<=360; i+=30){ dot(rotate(75)*dir(i)); } label("$C$",dir(45),NE); label("$B$",dir(75),N); label("$A$",dir(105),N); label("$L$",dir(135),NW); label("$K$",dir(165),W); label("$J$",dir(195),W); label("$I$",dir(225),SW); label("$H$",dir(255),S); label("$G$",dir(285),S); label("$F$",dir(315),SE); label("$E$",dir(345),E); label("$D$",dir(375),E); [/asy]

Proposed by mahaler

Solution