angle between 2 equilateral triangles on the same side of line is 60^o
Source: Dutch NMO 2015 p3 seniors
September 7, 2019
geometryEquilateral TriangleEquilateralangles
Problem Statement
Points , and are on a line in this order. Points and lie on the same side of this line, in such a way that triangles and are equilateral. The segments and intersect in point . Prove that .[asy]
unitsize(1.5 cm);pair A, B, C, D, E, S;A = (0,0);
B = (1,0);
C = (2.5,0);
D = dir(60);
E = B + 1.5*dir(60);
S = extension(C,D,A,E);fill(A--B--D--cycle, gray(0.8));
fill(B--C--E--cycle, gray(0.8));
draw(interp(A,C,-0.1)--interp(A,C,1.1));
draw(A--D--B--E--C);
draw(A--E);
draw(C--D);
draw(anglemark(D,S,A,5));dot("", A, dir(270));
dot("", B, dir(270));
dot("", C, dir(270));
dot("", D, N);
dot("", E, N);
dot("", S, N);
[/asy]