Difference between revisions of "2025 SSMO Accuracy Round Problems/Problem 2"
(Created page with "==Problem== Let <math>ABC</math> be a triangle with circumcircle <math>\omega</math>. The midpoint of <math>AB</math> is <math>M,</math> and the line <math>CM</math> intersec...") |
(→Solution) |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
==Solution== | ==Solution== | ||
+ | |||
+ | <asy> | ||
+ | import geometry; | ||
+ | unitsize(2.5cm); | ||
+ | |||
+ | point A=dir(00); | ||
+ | point B=dir(180); | ||
+ | point C=dir(60); | ||
+ | point M=0.5*A+0.5*B; | ||
+ | point P=-C; | ||
+ | |||
+ | draw(A--B--C--cycle); | ||
+ | draw(unitcircle,blue); | ||
+ | draw(C--P,red+dashed); | ||
+ | |||
+ | dot(A); dot(B); dot(C); dot(M); dot(P); | ||
+ | |||
+ | label("$A$", A, dir(0)); | ||
+ | label("$B$", B, dir(180)); | ||
+ | label("$C$", C, dir(60)); | ||
+ | label("$M$", M+(0.05,0), dir(-90)); | ||
+ | label("$P$", P, dir(240)); | ||
+ | label("$\omega$", (0,-0.9)); | ||
+ | </asy> | ||
+ | |||
+ | To begin, note that <math>\angle AMC = 60^\circ</math> and <math>AM = BM = MC</math>. This means that <math>\triangle AMC</math> is equilateral. Now, observe that <math>\angle BCM = \tfrac{1}{2}(180^\circ - 120^\circ) = 30^\circ</math>. Thus, <math>\angle ACB = 90^\circ</math>. Because <math>\triangle AMC</math> is equilateral, <math>\angle BAC = 60^\circ</math>, implying that <math>\triangle ABC</math> is a 30-60-90 triangle. | ||
+ | |||
+ | The circumcenter of a right triangle is the midpoint of its hypotenuse, so <math>M</math> is the center of <math>\omega</math> and <math>PM</math> is a radius of <math>\omega</math>. Therefore, it suffices to find the length of <math>AM</math> since <math>AM</math> is also a radius of <math>\omega</math>. By 30-60-90 triangle properties, <math>AB = \tfrac{2}{\sqrt{3}} \cdot BC = \tfrac{40\sqrt{3}}{3}</math>, so <math>AM = \tfrac{1}{2}\cdot AB = \tfrac{20\sqrt{3}}{3}</math>. We extract <math>20+3+3 = \boxed{26}</math>. | ||
+ | |||
+ | ~Sedro |
Latest revision as of 11:57, 11 September 2025
Problem
Let be a triangle with circumcircle
. The midpoint of
is
and the line
intersects
again at
. Given
is isosceles, and
the length of
can be written as
where
and
are positive integers such that
and
are relatively prime and
is square-free. Find
.
Solution
To begin, note that and
. This means that
is equilateral. Now, observe that
. Thus,
. Because
is equilateral,
, implying that
is a 30-60-90 triangle.
The circumcenter of a right triangle is the midpoint of its hypotenuse, so is the center of
and
is a radius of
. Therefore, it suffices to find the length of
since
is also a radius of
. By 30-60-90 triangle properties,
, so
. We extract
.
~Sedro