Difference between revisions of "2024 AMC 10A Problems/Problem 14"
MRENTHUSIASM (talk | contribs) |
MRENTHUSIASM (talk | contribs) (→Diagram) |
||
Line 7: | Line 7: | ||
== Diagram == | == Diagram == | ||
+ | [asy] | ||
+ | /* Made by MRENTHUSIASM */ | ||
+ | size(250); | ||
+ | |||
+ | pair A, B, C; | ||
+ | path p1, p2, p3; | ||
+ | p1 = scale(16)*polygon(3); | ||
+ | p2 = Circle((12*sqrt(3),4),12); | ||
+ | A = intersectionpoint(p1,p2); | ||
+ | B = (8*sqrt(3),-8); | ||
+ | C = (12*sqrt(3),-8); | ||
+ | Label L1 = Label("<math>24</math>", align=(0,0), position=MidPoint, filltype=Fill(0,3,white)); | ||
+ | fill(A--Arc((12*sqrt(3),4),A,C)--B--cycle,yellow); | ||
+ | draw(p1^^p2); | ||
+ | draw((8*sqrt(3),-8)--(22+8*sqrt(3),-8)); | ||
+ | draw((-18,-8)--(-18,16), L=L1, arrow=Arrows(),bar=Bars(15)); | ||
+ | dot((12*sqrt(3),4),linewidth(4)); | ||
+ | draw((12*sqrt(3),4)--(12+12*sqrt(3),4)); | ||
+ | label("<math>12</math>",(6+12*sqrt(3),4),1.5S); | ||
+ | [/asy] |
Revision as of 16:58, 8 November 2024
Problem
One side of an equilateral triangle of height lies on line . A circle of radius is tangent to line and is externally tangent to the triangle. The area of the region exterior to the triangle and the circle and bounded by the triangle, the circle, and line can be written as , where , , and are positive integers and is not divisible by the square of any prime. What is ?
Diagram
[asy] /* Made by MRENTHUSIASM */ size(250);
pair A, B, C; path p1, p2, p3; p1 = scale(16)*polygon(3); p2 = Circle((12*sqrt(3),4),12); A = intersectionpoint(p1,p2); B = (8*sqrt(3),-8); C = (12*sqrt(3),-8); Label L1 = Label("", align=(0,0), position=MidPoint, filltype=Fill(0,3,white)); fill(A--Arc((12*sqrt(3),4),A,C)--B--cycle,yellow); draw(p1^^p2); draw((8*sqrt(3),-8)--(22+8*sqrt(3),-8)); draw((-18,-8)--(-18,16), L=L1, arrow=Arrows(),bar=Bars(15)); dot((12*sqrt(3),4),linewidth(4)); draw((12*sqrt(3),4)--(12+12*sqrt(3),4)); label("",(6+12*sqrt(3),4),1.5S); [/asy]