Maths Olympiad Prep

Library / /331 of 520

Geometry Difficulty 7.1 National olympiad, round 2 Find the answer

Point GG is where the medians of the triangle ABCABC intersect and point DD is the midpoint of side BCBC. The triangle BDGBDG is equilateral with side length 1. Determine the lengths, ABAB, BCBC, and CACA, of the sides of triangle ABCABC.

Figure (Asymptote source)
size(200);
defaultpen(fontsize(10));
real r=100.8933946;
pair A=sqrt(7)*dir(r), B=origin, C=(2,0), D=midpoint(B--C), E=midpoint(A--C), F=midpoint(A--B), G=centroid(A,B,C);
draw(A--B--C--A--D^^B--E^^C--F);
pair point=G;
label("$A$", A, dir(point--A));
label("$B$", B, dir(point--B));
label("$C$", C, dir(point--C));
label("$D$", D, dir(point--D));
label("$E$", E, dir(point--E));
label("$F$", F, dir(point--F));
label("$G$", G, dir(20));
label("1", B--G, dir(150));
label("1", D--G, dir(30));
label("1", B--D, dir(270));

A number or a short expression. Fractions can be typed as 3/2, and spacing doesn't matter.

Solution

1. Identify the given information and the properties of the centroid:
- Point G G is the centroid of triangle ABC ABC .
- Point D D is the midpoint of side BC BC .
- Triangle BDG BDG is equilateral with side length 1.

2. **Determine the length of BC BC :**
- Since D D is the midpoint of BC BC and BD=1 BD = 1 , it follows that DC=1 DC = 1 .
- Therefore, BC=BD+DC=1+1=2 BC = BD + DC = 1 + 1 = 2 .

3. Use the centroid properties:
- The centroid G G divides each median into a ratio of 2:1.
- Let E E be the midpoint of AC AC , and F F be the midpoint of AB AB .

4. **Calculate BG BG and GD GD :**
- Since BDG BDG is equilateral, BG=GD=1 BG = GD = 1 .

5. **Determine the length of AG AG :**
- The centroid divides the median AD AD in the ratio 2:1.
- Therefore, AG=2×GD=2×1=2 AG = 2 \times GD = 2 \times 1 = 2 .

6. **Calculate GE GE :**
- Since G G is the centroid, GE=12×AG=12×2=1 GE = \frac{1}{2} \times AG = \frac{1}{2} \times 2 = 1 .

7. **Apply the Law of Cosines in AGE \triangle AGE :**
- AGE=60 \angle AGE = 60^\circ because BDG BDG is equilateral.
- Using the Law of Cosines:
AE2=AG2+GE22AGGEcos(60) AE^2 = AG^2 + GE^2 - 2 \cdot AG \cdot GE \cdot \cos(60^\circ)
AE2=22+1222112 AE^2 = 2^2 + 1^2 - 2 \cdot 2 \cdot 1 \cdot \frac{1}{2}
AE2=4+12=3 AE^2 = 4 + 1 - 2 = 3
AE=3 AE = \sqrt{3}

8. **Determine the length of CA CA :**
- Since E E is the midpoint of AC AC , AE=12×AC AE = \frac{1}{2} \times AC .
- Therefore, AC=2×AE=2×3=23 AC = 2 \times AE = 2 \times \sqrt{3} = 2\sqrt{3} .

9. **Apply the Law of Cosines in AGB \triangle AGB :**
- AGB=120 \angle AGB = 120^\circ because BDG BDG is equilateral.
- Using the Law of Cosines:
AB2=AG2+BG22AGBGcos(120) AB^2 = AG^2 + BG^2 - 2 \cdot AG \cdot BG \cdot \cos(120^\circ)
AB2=22+12221(12) AB^2 = 2^2 + 1^2 - 2 \cdot 2 \cdot 1 \cdot (-\frac{1}{2})
AB2=4+1+2=7 AB^2 = 4 + 1 + 2 = 7
AB=7 AB = \sqrt{7}

The final answer is AB=7 \boxed{ AB = \sqrt{7} } , BC=2 BC = 2 , and CA=23 CA = 2\sqrt{3} .

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: NuminaMath-1.5, licensed Apache-2.0. Statement and solution reproduced as published; topic and difficulty added by this site.