Difference between revisions of "2016 AMC 10A Problems/Problem 24"
m (Solution Clarity) |
(Added diagram) |
||
Line 131: | Line 131: | ||
==Solution 3 (Easier trig)== | ==Solution 3 (Easier trig)== | ||
− | + | ||
+ | <asy> | ||
+ | size(250); | ||
+ | defaultpen(linewidth(0.4)); | ||
+ | //Variable Declarations | ||
+ | real RADIUS; | ||
+ | pair A, B, C, D, E, F, O; | ||
+ | RADIUS=3; | ||
+ | |||
+ | //Variable Definitions | ||
+ | A=RADIUS*dir(148.414); | ||
+ | B=RADIUS*dir(109.471); | ||
+ | C=RADIUS*dir(70.529); | ||
+ | D=RADIUS*dir(31.586); | ||
+ | E=foot(A,B,C); | ||
+ | F=foot(D,B,C); | ||
+ | O=(0,0); | ||
+ | |||
+ | //Path Definitions | ||
+ | path quad= A -- B -- C -- D -- cycle; | ||
+ | |||
+ | //Initial Diagram | ||
+ | draw(Circle(O, RADIUS), linewidth(0.8)); | ||
+ | draw(quad, linewidth(0.8)); | ||
+ | label("$A$",A,W); | ||
+ | label("$B$",B,NW); | ||
+ | label("$C$",C,NE); | ||
+ | label("$D$",D,ENE); | ||
+ | label("$O$",O,S); | ||
+ | label("$\theta$",O,3N); | ||
+ | |||
+ | //Radii | ||
+ | draw(O--A); | ||
+ | draw(O--B); | ||
+ | draw(O--C); | ||
+ | draw(O--D); | ||
+ | |||
+ | //Construction | ||
+ | draw(A--E); | ||
+ | draw(E--B); | ||
+ | draw(C--F); | ||
+ | draw(F--D); | ||
+ | label("$E$",E,NW); | ||
+ | label("$F$",F,NE); | ||
+ | |||
+ | //Angle marks | ||
+ | draw(anglemark(C,O,B)); | ||
+ | draw(rightanglemark(A,E,B)); | ||
+ | draw(rightanglemark(C,F,D)); | ||
+ | </asy> | ||
+ | |||
Construct quadrilateral <math>ABCD</math> on the circle <math>O</math> with <math>AD</math> being the missing side. Then, drop perpendiculars from <math>A</math> and <math>D</math> to (extended) line <math>BC</math>, and let these points be <math>E</math> and <math>F</math>, respectively. Also, let <math>\theta = \angle BOC</math>. From Law of Cosines on <math>\triangle BOC</math>, we have <math>\cos \theta = \frac{3}{4}</math>. | Construct quadrilateral <math>ABCD</math> on the circle <math>O</math> with <math>AD</math> being the missing side. Then, drop perpendiculars from <math>A</math> and <math>D</math> to (extended) line <math>BC</math>, and let these points be <math>E</math> and <math>F</math>, respectively. Also, let <math>\theta = \angle BOC</math>. From Law of Cosines on <math>\triangle BOC</math>, we have <math>\cos \theta = \frac{3}{4}</math>. | ||
− | Now, since <math>\triangle | + | Now, since <math>\triangle BOC</math> is isosceles with <math>OB = OC</math>, we have that <math>\angle BCO = \angle CBO = 90 - \frac{\theta}{2}</math>. By SSS congruence, we have that <math>\triangle OBC \cong \triangle OCD</math>, so we have that <math>\angle OCD = \angle CBO = 90 - \frac{\theta}{2}</math>, so <math>\angle DFC = \theta</math>. |
Thus, we have <math>\frac{FC}{DC} = \cos \theta = \frac{3}{4}</math>, so <math>FC = 150</math>. Similarly, <math>BE = 150</math>, and <math>AD = 150 + 200 + 150 = \boxed{500}</math>. | Thus, we have <math>\frac{FC}{DC} = \cos \theta = \frac{3}{4}</math>, so <math>FC = 150</math>. Similarly, <math>BE = 150</math>, and <math>AD = 150 + 200 + 150 = \boxed{500}</math>. | ||
Revision as of 11:16, 4 February 2016
Contents
[hide]Problem
A quadrilateral is inscribed in a circle of radius . Three of the sides of this quadrilateral have length . What is the length of the fourth side?
Solution 1 (Algebra)
To save us from getting big numbers with lots of zeros behind them, let's divide all side lengths by for now, then multiply it back at the end of our solution.
Construct quadrilateral on the circle with being the missing side (Notice that since the side length is less than the radius, it will be very small on the top of the circle). Now, draw the radii from center to and . Let the intersection of and be point . Notice that and are perpendicular because is a kite.
We set lengths equal to . By the Pythagorean Theorem,
We solve for :
.
By Ptolemy's Theorem,
Substituting values,
Finally, we multiply back the that we divided by at the beginning of the problem to get .
Solution 2 (Trigonometry Bash)
Construct quadrilateral on the circle with being the missing side (Notice that since the side length is less than the radius, it will be very small on the top of the circle). Now, draw the radii from center to and . Apply law of cosines on ; let . We get the following equation: Substituting the values in, we get Canceling out, we get Because , , and are congruent, . To find the remaining side (), we simply have to apply the law of cosines to . Now, to find , we can derive a formula that only uses : Plugging in , we get . Now, applying law of cosines on triangle , we get
Solution 3 (Easier trig)
Construct quadrilateral on the circle with being the missing side. Then, drop perpendiculars from and to (extended) line , and let these points be and , respectively. Also, let . From Law of Cosines on , we have . Now, since is isosceles with , we have that . By SSS congruence, we have that , so we have that , so . Thus, we have , so . Similarly, , and .
See Also
2016 AMC 10A (Problems • Answer Key • Resources) | ||
Preceded by Problem 23 |
Followed by Problem 25 | |
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 |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.