Difference between revisions of "2021 WSMO Accuracy Round Problems/Problem 5"
(→Solution 1) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Problem== | ==Problem== | ||
Suppose regular octagon <math>ABCDEFGH</math> has side length <math>5.</math> If the distance from the center of the octagon to one of the sides can be expressed as <math>\frac{a+b\sqrt{c}}{d}</math> where <math>\gcd{(a,b,d)}=1</math> and <math>c</math> is not divisible by the square of any prime, find <math>a+b+c+d.</math> | Suppose regular octagon <math>ABCDEFGH</math> has side length <math>5.</math> If the distance from the center of the octagon to one of the sides can be expressed as <math>\frac{a+b\sqrt{c}}{d}</math> where <math>\gcd{(a,b,d)}=1</math> and <math>c</math> is not divisible by the square of any prime, find <math>a+b+c+d.</math> | ||
+ | |||
==Solution 1== | ==Solution 1== | ||
+ | <asy> | ||
+ | size(150); | ||
+ | draw(polygon(8)); for(int i=45; i<=360; i+=45){ dot(rotate(22.5)*dir(i)); } | ||
+ | label("$D$",dir(337.5),SE); | ||
+ | label("$C$",dir(22.5),NE); | ||
+ | label("$B$",dir(67.5),N); | ||
+ | label("$E$",dir(292.5),S); | ||
+ | label("$F$",dir(247.5),S); | ||
+ | label("$G$",dir(202.5),W); | ||
+ | label("$H$",dir(157.5),NW); | ||
+ | label("$A$",dir(112.5),N); | ||
+ | label("$O$",(0,0),S); | ||
+ | dot((0,0),red); | ||
+ | draw(dir(112.5)--dir(67.5)--(0,0)--cycle,red); | ||
+ | dot(dir(112.5),red); | ||
+ | dot(dir(67.5),red); | ||
+ | label("$5$",(0,1.05)); | ||
+ | draw(anglemark(dir(67.5),(0,0),dir(112.5)),red); | ||
+ | label("$45^{\circ}$",(0,0.25),N); | ||
+ | </asy> | ||
+ | Let the center of the octagon be <math>O.</math> We will focus on triangle <math>AOB.</math> Let <math>AO=OB=x.</math> From the Law of Cosines on triangle <math>AOB,</math> we find that <cmath>x^2+x^2-2x^2\cdot\cos{(45^{\circ})}=5^2=25\implies</cmath><cmath>(2-\sqrt{2})x^2=25\implies x^2=\frac{25}{2-\sqrt{2}}=\frac{25(2+\sqrt{2})}{2}.</cmath> Now, let the distance from the center of the octagon to one of its sides be <math>h.</math> This means that <cmath>[AOB]=\frac{5h}{2}.</cmath> In addition, from the sine area formula, <cmath>[AOB]=\frac{1}{2}\sin{\angle{AOB}}\cdot AO\cdot BO=\frac{x^2\sqrt{2}}{4}=\frac{25(\sqrt{2}+1)}{4}.</cmath> Therefore, we have <cmath>\frac{5h}{2}=\frac{25(\sqrt{2}+1)}{4}\implies h=\frac{5+5\sqrt{2}}{2}\Longrightarrow5+5+2+2=\boxed{14}.</cmath> | ||
+ | ~pinkpig | ||
+ | ==Solution 2== | ||
Note that the area of a polygon with <math>n</math> sides, <math>s</math> side length, and <math>l</math> apothem (distance from the center to one of the sides) can be expressed as <math>(nsl)/2.</math> Applying this formula, we get <cmath>(8\cdot 5\cdot l)/2=40l/2=20l.</cmath> Now, we need something to equate to this. Remember that the area of a regular octagon with side length <math>s</math> is <math>2s^2(1+\sqrt{2}).</math> This means that the area of octagon <math>ABCDEFGH</math> is <math>50+50\sqrt{2}.</math> Therefore, the answer is <cmath>l=\frac{50+50\sqrt{2}}{20}=\frac{5+5\sqrt{2}}{2}\implies \boxed{14}.</cmath> | Note that the area of a polygon with <math>n</math> sides, <math>s</math> side length, and <math>l</math> apothem (distance from the center to one of the sides) can be expressed as <math>(nsl)/2.</math> Applying this formula, we get <cmath>(8\cdot 5\cdot l)/2=40l/2=20l.</cmath> Now, we need something to equate to this. Remember that the area of a regular octagon with side length <math>s</math> is <math>2s^2(1+\sqrt{2}).</math> This means that the area of octagon <math>ABCDEFGH</math> is <math>50+50\sqrt{2}.</math> Therefore, the answer is <cmath>l=\frac{50+50\sqrt{2}}{20}=\frac{5+5\sqrt{2}}{2}\implies \boxed{14}.</cmath> | ||
~captainnobody | ~captainnobody |
Latest revision as of 09:55, 11 July 2022
Problem
Suppose regular octagon has side length If the distance from the center of the octagon to one of the sides can be expressed as where and is not divisible by the square of any prime, find
Solution 1
Let the center of the octagon be We will focus on triangle Let From the Law of Cosines on triangle we find that Now, let the distance from the center of the octagon to one of its sides be This means that In addition, from the sine area formula, Therefore, we have ~pinkpig
Solution 2
Note that the area of a polygon with sides, side length, and apothem (distance from the center to one of the sides) can be expressed as Applying this formula, we get Now, we need something to equate to this. Remember that the area of a regular octagon with side length is This means that the area of octagon is Therefore, the answer is ~captainnobody