isosceles wanted, parallelogram and equal segments given, for juniors
Source: Dutch NMO 2014 p2 juniors
September 7, 2019
geometryparallelogramisoscelesIsosceles Triangleequal segments
Problem Statement
Let be a parallelogram with an acute angle at . Let be a point on the line , distinct from , such that . Let be a point on the line , distinct from , such that . Prove that triangle is isosceles.[asy]
unitsize(1.5 cm);pair A, B, C, D, G, H;A = (0,0);
B = (2,0);
D = (0.5,1.5);
C = B + D - A;
G = reflect(A,B)*(C) + C - B;
H = reflect(B,C)*(H) + A - B;draw(H--A--D--C--G);
draw(interp(A,G,-0.1)--interp(A,G,1.1));
draw(interp(C,H,-0.1)--interp(C,H,1.1));
draw(D--G--H--cycle, dashed);dot("", A, SW);
dot("", B, SE);
dot("", C, E);
dot("", D, NW);
dot("", G, NE);
dot("", H, SE);
[/asy]