Difference between revisions of "2023 AMC 12B Problems/Problem 25"
(→Solution 1) |
(redirect) |
||
Line 1: | Line 1: | ||
+ | {{duplicate|[[2023 AMC 10B Problems/Problem 25|2023 AMC 10B #25]] and [[2023 AMC 12B Problems/Problem 25|2023 AMC 12B #25]]}} | ||
+ | |||
==Problem== | ==Problem== | ||
Line 18: | Line 20: | ||
<math>(\frac{ON}{OM})^{2} = (\frac{\frac{OA}{2}}{OA\sin (\angle OAE)})^{2} = \frac{1}{4\sin^{2}54}</math> | <math>(\frac{ON}{OM})^{2} = (\frac{\frac{OA}{2}}{OA\sin (\angle OAE)})^{2} = \frac{1}{4\sin^{2}54}</math> | ||
− | Option 1: Knowledge | + | |
+ | ===Option 1: Knowledge=== | ||
Remember that <math>\sin54 = \frac{1+\sqrt5}{4}</math>. | Remember that <math>\sin54 = \frac{1+\sqrt5}{4}</math>. | ||
− | Option 2: Angle Identities | + | |
+ | ===Option 2: Angle Identities=== | ||
<math>\cos54 = \sin36</math> | <math>\cos54 = \sin36</math> | ||
Line 50: | Line 54: | ||
-Dissmo | -Dissmo | ||
+ | |||
+ | ==Solution 2== | ||
+ | |||
+ | <asy> | ||
+ | unitsize(5cm); | ||
+ | |||
+ | // Define the vertices of the pentagons | ||
+ | pair A, B, C, D, E; | ||
+ | pair F, G, H, I, J; | ||
+ | |||
+ | // Calculate the vertices of the larger pentagon | ||
+ | A = dir(90); | ||
+ | B = dir(90 - 72); | ||
+ | C = dir(90 - 2*72); | ||
+ | D = dir(90 - 3*72); | ||
+ | E = dir(90 - 4*72); | ||
+ | |||
+ | // Draw the larger pentagon | ||
+ | draw(A--B--C--D--E--cycle); | ||
+ | |||
+ | pair O = (A+B+C+D+E)/5; | ||
+ | pair AA,OO; | ||
+ | real gap = 0.02; | ||
+ | AA = A+(0,0); | ||
+ | OO = O+(0,0); | ||
+ | |||
+ | draw(AA--OO, blue); | ||
+ | |||
+ | pair OOO, OAO; | ||
+ | OOO = O+(gap,0); | ||
+ | OAO = (O+A)/2 + (gap,0); | ||
+ | |||
+ | draw(OOO--OAO,green); | ||
+ | dot(O); | ||
+ | dot((O+A)/2); | ||
+ | |||
+ | label("$r_b$", (O+A)*.7, E,blue); | ||
+ | label("$a_s$", (O+A)*.2 +(0+0.18,0.05), E,green); | ||
+ | label("$r_s$", O+(-0.175,0.2), E,pink); | ||
+ | |||
+ | |||
+ | real scaleFactor = 1/1.618; // Adjust this value as needed | ||
+ | // Rotate the smaller pentagon by 180 degrees | ||
+ | F = (1 - scaleFactor) * (0,0) + scaleFactor * dir(90 + 180); | ||
+ | G = (1 - scaleFactor) * (0,0) + scaleFactor * dir(90 - 72 + 180); | ||
+ | H = (1 - scaleFactor) * (0,0) + scaleFactor * dir(90 - 2*72 + 180); | ||
+ | I = (1 - scaleFactor) * (0,0) + scaleFactor * dir(90 - 3*72 + 180); | ||
+ | J = (1 - scaleFactor) * (0,0) + scaleFactor * dir(90 - 4*72 + 180); | ||
+ | |||
+ | // Draw the smaller pentagon | ||
+ | |||
+ | draw(F--G--H--I--J--cycle,red); | ||
+ | |||
+ | draw(arc(O,(H+I)*.5*.6,H*.6)); | ||
+ | label("$36^\circ$",O+(+0.05,0.15),NW); | ||
+ | draw(O--H,pink); | ||
+ | </asy> | ||
+ | |||
+ | Let <math>r_b</math> and <math>r_s</math> be the circumradius of the big and small pentagon, respectively. Let <math>a_s</math> be the apothem of the smaller pentagon and <math>A_s</math> and <math>A_b</math> be the areas of the smaller and larger pentagon, respectively. | ||
+ | |||
+ | From the diagram: | ||
+ | <cmath>\begin{align*} | ||
+ | \cos{36^\circ} &= \dfrac{a_s}{r_s} = \dfrac{\phi}{2} = \dfrac{\sqrt{5}+1}{4}\\ | ||
+ | a_s &= \dfrac{r_b}{2}\\ | ||
+ | A_s &= \left(\dfrac{r_s}{r_b}\right)^2A_b\\ | ||
+ | &=\left(\dfrac{a_s}{\cos{36^\circ} r_b}\right)^2 \left(1+\sqrt{5}\right)\\ | ||
+ | &=\left(\dfrac{r_b}{\dfrac{\phi}{2} r_b}\right)^2 \left(1+\sqrt{5}\right)\\ | ||
+ | &=\left(\dfrac{1}{2 \dfrac{\phi}{2}}\right)^2 \left(1+\sqrt{5}\right)\\ | ||
+ | &=\left(\dfrac{2}{\sqrt{5}+1}\right)^2 \left(1+\sqrt{5}\right)\\ | ||
+ | &=\dfrac{4}{\sqrt{5}+1} \\ | ||
+ | &=\dfrac{4\left(\sqrt{5}-1\right)}{\left(\sqrt{5}+1\right)\left(\sqrt{5}-1\right)} \\ | ||
+ | &=\sqrt{5}-1 | ||
+ | \end{align*}</cmath> | ||
+ | <cmath>\boxed{\textbf{(B) }\sqrt{5}-1}</cmath> | ||
+ | ~Technodoggo | ||
+ | |||
+ | ==Solution 3== | ||
+ | Interestingly, we find that the pentagon we need is the one that is represented by the intersection of the diagonals. Through similar triangles and the golden ratio, we find that the side length ratio of the two pentagons is <math>\frac{\sqrt{5}-1}{2}</math> Thus, the answer is <math>\sqrt{5}+1 \cdot (\frac{\sqrt{5}-1}{2})^2 = \sqrt{5}-1</math>. <math>\boxed{\text{B}}</math> | ||
+ | ~andliu766 | ||
+ | |||
+ | ==See also== | ||
+ | {{AMC10 box|year=2023|ab=B|num-b=24|after=Last Problem}} | ||
+ | {{AMC12 box|year=2023|ab=B|num-b=24|after=Last Problem}} | ||
+ | {{MAA Notice}} |
Revision as of 20:18, 15 November 2023
- The following problem is from both the 2023 AMC 10B #25 and 2023 AMC 12B #25, so both problems redirect to this page.
Contents
Problem
A regular pentagon with area is printed on paper and cut out. The five vertices of the pentagon are folded into the center of the pentagon, creating a smaller pentagon. What is the area of the new pentagon?
Solution 1
Let the original pentagon be centered at . The dashed lines represent the fold lines. WLOG, let's focus on vertex .
Since is folded onto , where is the intersection of and the creaseline between and . Note that the inner pentagon is regular, and therefore similar to the original pentagon, due to symmetry.
Because of their similarity, the ratio of the inner pentagon's area to that of the outer pentagon can be represented by
Option 1: Knowledge
Remember that .
Option 2: Angle Identities
Let the inner pentagon be .
$\boxed{B 🐱}$ (Error compiling LaTeX. Unknown error_msg)
-Dissmo
Solution 2
Let and be the circumradius of the big and small pentagon, respectively. Let be the apothem of the smaller pentagon and and be the areas of the smaller and larger pentagon, respectively.
From the diagram: ~Technodoggo
Solution 3
Interestingly, we find that the pentagon we need is the one that is represented by the intersection of the diagonals. Through similar triangles and the golden ratio, we find that the side length ratio of the two pentagons is Thus, the answer is . ~andliu766
See also
2023 AMC 10B (Problems • Answer Key • Resources) | ||
Preceded by Problem 24 |
Followed by Last Problem | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | ||
All AMC 10 Problems and Solutions |
2023 AMC 12B (Problems • Answer Key • Resources) | |
Preceded by Problem 24 |
Followed by Last Problem |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | |
All AMC 12 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.