Difference between revisions of "2023 SSMO Team Round Problems/Problem 11"
(One intermediate revision by the same user not shown) | |||
Line 26: | Line 26: | ||
<asy> | <asy> | ||
− | + | import olympiad; | |
− | + | import geometry; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | size(7cm); | |
− | + | pair a, b, c, d, p, x, y; | |
− | + | a = (0,0); | |
− | + | b = (64/sqrt(65),8/sqrt(65)); | |
− | + | c = (sqrt(65),0); | |
− | + | d = (49/sqrt(65), -28/sqrt(65)); | |
− | |||
− | + | x = intersectionpoint(line(a,b),line(c,d)); | |
− | + | y = intersectionpoint(line(a,d),line(b,c)); | |
− | + | ||
− | + | p = orthocenter(a,b,d); | |
− | + | ||
− | + | filldraw(circumcircle(a,b,d), cyan+opacity(0.1), blue); | |
− | + | filldraw(a--x--y--cycle, red+opacity(0.3), red); | |
+ | filldraw(p--b--c--d--cycle, green+opacity(0.3), green); | ||
+ | draw(b--d, dashed+green); | ||
+ | draw(x--c--y, blue); | ||
+ | |||
+ | dot("$A$", a, dir(180)); | ||
+ | dot("$B$", b, dir(45)); | ||
+ | dot("$C$", c, dir(0)); | ||
+ | dot("$D$", d, dir(270)); | ||
+ | dot("$P$", p, dir(180)); | ||
+ | dot("$X$", x, dir(50)); | ||
+ | dot("$Y$", y, dir(270)); | ||
</asy> | </asy> | ||
+ | |||
+ | ~SMO_Team |
Latest revision as of 21:34, 9 September 2025
Problem
Let be a cyclic quadrilateral such that
is the diameter. Let
be the orthocenter of
. Define
, and
. If
,
, and
, suppose
Find
.
Solution
Since is a diameter,
and
are right angles. Therefore, since
, quadrilateral
is cyclic.
It is well known that is a parallelogram, which can be proven through angle chasing.
Using the Sine Area Formula, we have and
Thus, the ratio of the areas is since
.
Given that the diameter has length and
, let
. Then, by Power of a Point from
, we have
Expanding both sides:
Solving gives . Since
, it follows that
.
Therefore, and
. Then the area ratio is
so the final answer is
.
~SMO_Team