Difference between revisions of "2025 SSMO Speed Round Problems/Problem 6"
(Created page with "==Problem== The centroid <math>G</math> of <math>\triangle{ABC}</math> has distances <math>21,</math> <math>60,</math> and <math>28</math> from sides <math>AB,</math> <math>B...") |
(→Solution) |
||
Line 4: | Line 4: | ||
==Solution== | ==Solution== | ||
+ | |||
+ | <asy> | ||
+ | unitsize(0.15cm); | ||
+ | pair A,B,C,G,M; | ||
+ | |||
+ | B=(0,0); | ||
+ | A=(60,0); | ||
+ | C=(24.17,17.78); | ||
+ | G=(28.06,5.93); | ||
+ | M=(30,0); | ||
+ | |||
+ | fill(A--B--G--cycle,palegreen); | ||
+ | |||
+ | dot(A); | ||
+ | dot(B); | ||
+ | dot(C); | ||
+ | dot(G); | ||
+ | dot(M); | ||
+ | |||
+ | draw(A--B--C--cycle); | ||
+ | |||
+ | label("$A$",A,dir(0)); | ||
+ | label("$B$",B,dir(180)); | ||
+ | label("$C$",C,dir(90)); | ||
+ | label("$G$",G,dir(45)); | ||
+ | label("$M$",(31,0),dir(270)); | ||
+ | |||
+ | draw(A--G); | ||
+ | draw(B--G); | ||
+ | draw(C--G); | ||
+ | draw(G--M,dashed); | ||
+ | </asy> | ||
+ | |||
+ | Let <math>a=BC</math>, <math>b=CA</math>, and <math>c=AB</math>. If <math>M</math> denotes the midpoint of <math>AB</math>, note that by centroid properties, <math>GM:CM = 1:3</math>, and hence, <math>[ABG] = [BGM] + [AGM] = \tfrac{1}{3}[BCM]+\tfrac{1}{3}[ACM] = \tfrac{1}{3}[ABC]</math> by same-altitude triangles. Using analogous reasoning, we can show that <math>[ABG]=[BCG]=[CAG] = \tfrac{1}{3}[ABC]</math>. | ||
+ | |||
+ | We know that the length of the altitude from <math>G</math> to <math>AB</math> is <math>21</math>, and thus <math>[ABG] = \tfrac{21}{2}c</math>. Similarly, we can find that <math>[BCG] = 30a</math> and <math>[CAG] = 14b</math>. Equating the areas of these triangles, we have <math>30a = 14b = \tfrac{21}{2}c</math>, which is equivalent to <math>a:b:c = 7:15:20</math>. | ||
+ | |||
+ | Let <math>a = 7x</math>, <math>b=15x</math>, and <math>c=20x</math> for some positive real <math>x</math>; we now solve for <math>x</math> by computing the area of <math>ABC</math> in two different ways. On one hand, we have <math>[ABC] = [ABG]+[BCG]+[CAG] = 630x</math>. On the other hand, by Heron's formula, <math>[ABC] = 42x^2</math>. Hence, <math>630x = 42x^2</math>, which gives <math>x = 15</math>. The perimeter of <math>ABC</math> is <math>42x = \boxed{630}</math>. |
Revision as of 16:51, 9 September 2025
Problem
The centroid of
has distances
and
from sides
and
respectively. Find the perimeter of
.
Solution
Let ,
, and
. If
denotes the midpoint of
, note that by centroid properties,
, and hence,
by same-altitude triangles. Using analogous reasoning, we can show that
.
We know that the length of the altitude from to
is
, and thus
. Similarly, we can find that
and
. Equating the areas of these triangles, we have
, which is equivalent to
.
Let ,
, and
for some positive real
; we now solve for
by computing the area of
in two different ways. On one hand, we have
. On the other hand, by Heron's formula,
. Hence,
, which gives
. The perimeter of
is
.