Problem

Source: Dutch NMO 2014 p2 juniors

Tags: geometry, parallelogram, isosceles, Isosceles Triangle, equal segments



Let $ABCD$ be a parallelogram with an acute angle at $A$. Let $G$ be a point on the line $AB$, distinct from $B$, such that $|CG| = |CB|$. Let $H$ be a point on the line $BC$, distinct from $B$, such that $|AB| =|AH|$. Prove that triangle $DGH$ is isosceles. [asy][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$", A, SW); dot("$B$", B, SE); dot("$C$", C, E); dot("$D$", D, NW); dot("$G$", G, NE); dot("$H$", H, SE); [/asy][/asy]