Difference between revisions of "2025 SSMO Accuracy Round Problems/Problem 10"
(→Problem) |
(→Solution) |
||
Line 4: | Line 4: | ||
==Solution== | ==Solution== | ||
+ | |||
+ | <asy> | ||
+ | import geometry; | ||
+ | unitsize(2cm); | ||
+ | |||
+ | point A=(0,0); | ||
+ | point B=dir(80); | ||
+ | point C=2*dir(20); | ||
+ | point D=4*dir(-40); | ||
+ | point E=8*dir(-100); | ||
+ | |||
+ | draw(A--B--C--cycle); | ||
+ | draw(A--D--C); | ||
+ | draw(A--E--D); | ||
+ | |||
+ | dot(A); dot(B); dot(C); | ||
+ | </asy> | ||
+ | |||
+ | The main claim is that <math>P</math> is the the second intersection point of <math>(ABC)</math> and <math>(ADE)</math>. |
Latest revision as of 23:56, 20 September 2025
Problem
Let be a convex pentagon with
and
. Let
and
meet at
. Given that
,
, and
, the length of
can be expressed as
where
and
are positive integers such that
is square-free. Find
.
Solution
The main claim is that is the the second intersection point of
and
.