Difference between revisions of "2025 SSMO Accuracy Round Problems/Problem 10"
(Created page with "==Problem== Let <math>ABCDE</math> be a convex pentagon with <math>\angle{BAC} = \angle{CAD} = \angle{DAE}</math> and <math>\angle{ABC} = \angle{ACD} = \angle{ADE}</math>. Le...") |
(→Solution) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Problem== | ==Problem== | ||
− | Let <math>ABCDE</math> be a convex pentagon with <math>\angle{BAC} = \angle{CAD} = \angle{DAE}</math> and <math>\angle{ABC} = \angle{ACD} = \angle{ADE}</math>. Let <math>BD</math> and <math>CE</math> meet at <math>P</math>. Given that <math>BC = 6</math>, <math>\sin{\angle{BAC}} = \tfrac{3}{5}</math>, and <math>\tfrac{AC}{AB} = 5</math>, the length of <math>AP</math> can be expressed as <math>\ | + | Let <math>ABCDE</math> be a convex pentagon with <math>\angle{BAC} = \angle{CAD} = \angle{DAE}</math> and <math>\angle{ABC} = \angle{ACD} = \angle{ADE}</math>. Let <math>BD</math> and <math>CE</math> meet at <math>P</math>. Given that <math>BC = 6</math>, <math>\sin{\angle{BAC}} = \tfrac{3}{5}</math>, and <math>\tfrac{AC}{AB} = 5</math>, the length of <math>AP</math> can be expressed as <math>\tfrac{m}{\sqrt{n}},</math> where <math>m</math> and <math>n</math> are positive integers such that <math>n</math> is square-free. Find <math>m+n</math>. |
==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
.