Difference between revisions of "2002 Indonesia MO Problems/Problem 4"
Duck master (talk | contribs) (created page w/ solution & categorization) |
Duck master (talk | contribs) (added diagram) |
||
Line 2: | Line 2: | ||
== Solution == | == Solution == | ||
+ | |||
+ | <asy> | ||
+ | size(5cm); | ||
+ | |||
+ | draw(unitcircle); | ||
+ | |||
+ | pair A, C, B; | ||
+ | A = (-0.6, 0.8); | ||
+ | C = (0.6, 0.8); | ||
+ | B = (0.8, 0.6); | ||
+ | dot(A); | ||
+ | dot(C); | ||
+ | dot(B); | ||
+ | label("$A$", A, NW); | ||
+ | label("$C$", C, N); | ||
+ | label("$B$", B, SE); | ||
+ | draw(C--B--A); | ||
+ | |||
+ | pair Bp; | ||
+ | Bp = (0.88, 0.8); | ||
+ | dot(Bp, blue); | ||
+ | label("$B'$", Bp, NE, blue); | ||
+ | draw(A -- Bp); | ||
+ | |||
+ | pair midAB, dirAB; | ||
+ | midAB = (A + B)/2; | ||
+ | dirAB = (B - A); | ||
+ | |||
+ | path perpAB; | ||
+ | perpAB = (midAB - dir(90)*dirAB) -- (midAB + dir(90)*dirAB); | ||
+ | draw(perpAB, blue); | ||
+ | |||
+ | pair Ep, dirABp; | ||
+ | path perpABp; | ||
+ | Ep = (A + Bp)/2; | ||
+ | dirABp = (Bp - A); | ||
+ | perpABp = (Ep - dir(90)*dirABp) -- (Ep + dir(90)*dirABp); | ||
+ | dot(Ep, blue); | ||
+ | label("$E'$", Ep, NW, blue); | ||
+ | draw(perpABp, blue); | ||
+ | |||
+ | pair Dp; | ||
+ | Dp = intersectionpoint(perpAB, perpABp); | ||
+ | dot(Dp, blue); | ||
+ | label("$D'$", Dp, NW, blue); | ||
+ | draw(Bp--Dp--B, red); | ||
+ | draw(C--Dp--A, red); | ||
+ | </asy> | ||
We use the method of phantom points. | We use the method of phantom points. |
Latest revision as of 21:01, 24 September 2020
Given a triangle with . On the circumcircle of triangle there exists point , which is the midpoint of arc that contains . Let be a point on such that is perpendicular to . Prove that .
Solution
We use the method of phantom points.
Draw and , and extend line past to a point such that . Draw point at the midpoint of , and at the intersection of the perpendicular to from and the perpendicular bisector of .
Since , we have by side-side-side similarity. Then , so is cyclic.
In particular, since we have , we know that must be the midpoint of the arc of the circumcircle of that contains point , and since was on the perpendicular to from , we must have that is the foot of the perpendicular of to . But this uniquely identifies , and we are done.
See also
2002 Indonesia MO (Problems) | ||
Preceded by Problem 3 |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 | Followed by Problem 5 |
All Indonesia MO Problems and Solutions |