Difference between revisions of "2020 CIME I Problems/Problem 9"
(3 intermediate revisions by one other user not shown) | |||
Line 3: | Line 3: | ||
==Solution== | ==Solution== | ||
− | + | <asy> | |
+ | size(4cm); | ||
+ | /* draw figures */ | ||
+ | draw((0,0)--(1,0)); | ||
+ | draw(circle((0.5,-0.12046156424028276), 0.5143063177321622)); | ||
+ | draw((0.29472641365670604,0.35110364144073225)--(0,0)); | ||
+ | draw((0.29472641365670604,0.35110364144073225)--(0.7999672347109121,0.297307087718076)); | ||
+ | draw((0.7999672347109121,0.297307087718076)--(1,0)); | ||
+ | draw((0.29472641365670604,0)--(0.29472641365670604,0.35110364144073225)); | ||
+ | draw((0.7999672347109121,0.297307087718076)--(0.7999672347109121,-0.297307087718076)); | ||
+ | draw((0.7999672347109121,-0.297307087718076)--(0.29472641365670604,0.35110364144073225)); | ||
+ | draw(arc((0.5683059275348462,0),0.13393442314476192,127.92567650750303,180)); | ||
+ | draw((0.4620043965252797,0.05193209576548634)--(0.4339247468246395,0.06565000785448262)); | ||
+ | draw(arc((0.5683059275348462,0),0.13393442314476192,307.925676507503,360)); | ||
+ | draw((0.6746074585444126,-0.05193209576548634)--(0.7026871082450528,-0.06565000785448288)); | ||
+ | draw((0.7999672347109121,0.297307087718076)--(0.5683059275348462,0)); | ||
+ | draw(arc((0.5683059275348462,0),0.13393442314476192,360,412.074323492497)); | ||
+ | draw((0.6746074585444126,0.05193209576548634)--(0.702687108245053,0.06565000785448288)); | ||
+ | /* dots and labels */ | ||
+ | dot((0,0)); | ||
+ | label("$A$", (0,0), NW); | ||
+ | dot((1,0)); | ||
+ | label("$D$", (1,0), NE); | ||
+ | dot((0.29472641365670604,0.35110364144073225)); | ||
+ | label("$B$", (0.29472641365670604,0.35110364144073225), N); | ||
+ | dot((0.7999672347109121,0.297307087718076)); | ||
+ | label("$C$", (0.7999672347109121,0.297307087718076), N); | ||
+ | dot((0.29472641365670604,0)); | ||
+ | label("$X$", (0.29472641365670604,0), SW); | ||
+ | dot((0.7999672347109121,0)); | ||
+ | label("$Y$", (0.7999672347109121,0), SE); | ||
+ | dot((0.7999672347109121,-0.297307087718076)); | ||
+ | label("$C'$", (0.7999672347109121,-0.297307087718076), S); | ||
+ | dot((0.5683059275348462,0)); | ||
+ | label("$P$", (0.5683059275348462,0), SW); | ||
+ | </asy> | ||
+ | Let <math>C'</math> be the reflection of <math>C</math> over line <math>AD</math>. Since <math>\angle APB = \angle CPD = \angle C'PD</math>, <math>B, P, C</math> are collinear. Suppose <math>X</math> and <math>Y</math> are the projections of <math>B</math> and <math>C</math> onto line <math>AD</math>, respectively. We want to find <math>\frac{BP}{CP}</math> which by similar triangles is also equal to <math>\frac{BX}{C'Y}</math> from <math>\triangle BPX \sim \triangle C'PY</math>. Since <math>C'Y=CY</math>, this also equals <math>\frac{BX}{CY}</math>. We know that <math>\triangle ABD</math> and <math>\triangle ACD</math> each share the same base, so this can also be interpreted as <math>\frac{[ABD]}{[ACD]}</math>. The sine area formula gives <cmath>\frac{[ABD]}{[ACD]} = \frac{\frac{1}{2} \cdot 6 \cdot 5 \sin ABD}{\frac{1}{2} \cdot 8 \cdot 2 \sin ACD}.</cmath> Quadrilateral <math>ABCD</math> is cyclic, so <math>\angle ABD = \angle ACD</math> because both angles subtend arc <math>\widehat{AD}</math> on the circumcircle of Quadrilateral <math>ABCD</math>. We can then replace every <math>\angle ACD</math> with <math>\angle ABD</math>, but realise that if we do that, the <math>\angle ABD</math>s will cancel out. The requested area ratio is thus <cmath>\frac{\frac{1}{2} \cdot 6 \cdot 5}{\frac{1}{2} \cdot 8 \cdot 2} = \frac{15}{8}</cmath>. The answer is <math>15+8=\boxed{023}</math>. | ||
+ | |||
+ | ==Solution 2 (Law of Sines)== | ||
+ | |||
+ | We look for the ratio <math>\frac{BP}{CP}</math> so thus we use the Law of Sines since it involves ratios. | ||
+ | |||
+ | By the Law of Sines used on <math>\triangle APB</math> and <math>\triangle DPC</math>, | ||
+ | |||
+ | <cmath>\frac{6}{\sin \angle APB} = \frac{BP}{\sin A}</cmath><cmath>\frac{2}{\sin \angle DPC} = \frac{CP}{\sin A}</cmath>Since <math>\angle APC = \angle APB</math> implies <math>\sin \angle APB = \sin \angle DPC</math>, this implies | ||
+ | |||
+ | <cmath>\frac{BP}{CP} = 3 \cdot \frac{\sin A}{\sin D}</cmath>Now we just need to find <math>\frac{\sin A}{\sin D}</math> or its reciprocal to get the answer. | ||
+ | |||
+ | We use Law of Sines again on <math>\triangle ABD</math> and <math>\triangle ACD</math> as follows: | ||
+ | |||
+ | <cmath>\frac{\sin A}{5} = \frac{\sin \angle ABD}{AD}</cmath><cmath>\frac{8}{\sin D} = \frac{AD}{\sin \angle ACD}</cmath>Hence <math>\frac{\sin A}{\sin D} = \frac{8}{5}</math>. | ||
+ | |||
+ | Thus <math>\frac{BP}{CP} = 3 \cdot \frac{5}{8} = \boxed{\frac{15}{8}}</math>. | ||
+ | |||
+ | The answer is <math>m+n = \boxed{023}</math>. | ||
+ | |||
+ | ~FIREDRAGONMATH16 | ||
+ | |||
+ | ==Video Solution== | ||
+ | https://www.youtube.com/watch?v=atUCE3oSieg&lc=UgwRISSUhBk6GBF9g294AaABAg | ||
+ | |||
+ | ==See also== | ||
{{CIME box|year=2020|n=I|num-b=8|num-a=10}} | {{CIME box|year=2020|n=I|num-b=8|num-a=10}} | ||
+ | |||
+ | [[Category:Intermediate Geometry Problems]] | ||
{{MAC Notice}} | {{MAC Notice}} |
Latest revision as of 10:18, 3 September 2021
Problem 9
Let be a cyclic quadrilateral with . Let be the point on such that . Then can be expressed in the form , where and are relatively prime positive integers. Find .
Solution
Let be the reflection of over line . Since , are collinear. Suppose and are the projections of and onto line , respectively. We want to find which by similar triangles is also equal to from . Since , this also equals . We know that and each share the same base, so this can also be interpreted as . The sine area formula gives Quadrilateral is cyclic, so because both angles subtend arc on the circumcircle of Quadrilateral . We can then replace every with , but realise that if we do that, the s will cancel out. The requested area ratio is thus . The answer is .
Solution 2 (Law of Sines)
We look for the ratio so thus we use the Law of Sines since it involves ratios.
By the Law of Sines used on and ,
Since implies , this implies
Now we just need to find or its reciprocal to get the answer.
We use Law of Sines again on and as follows:
Hence .
Thus .
The answer is .
~FIREDRAGONMATH16
Video Solution
https://www.youtube.com/watch?v=atUCE3oSieg&lc=UgwRISSUhBk6GBF9g294AaABAg
See also
2020 CIME I (Problems • Answer Key • Resources) | ||
Preceded by Problem 8 |
Followed by Problem 10 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All CIME Problems and Solutions |
The problems on this page are copyrighted by the MAC's Christmas Mathematics Competitions.