Show that the area of A'B'C'D' is twice that of ABCD
Source: Canada National Mathematical Olympiad 1982 - Problem 1
September 30, 2011
geometrymodular arithmeticgeometry proposed
Problem Statement
In the diagram, is parallel and equal in length to for , 2, 3, and 4 (). Show that the area of is twice that of .[asy]
unitsize(1 cm);pair O;
pair[] A, B;O = (0,0);
A[1] = (0.5,-3);
A[2] = (2,0);
A[3] = (-0.2,0.5);
A[4] = (-1,0);
B[1] = A[2] - A[1];
B[2] = A[3] - A[2];
B[3] = A[4] - A[3];
B[4] = A[1] - A[4];draw(A[1]--A[2]--A[3]--A[4]--cycle);
draw(B[1]--B[2]--B[3]--B[4]--cycle);
draw(O--B[1]);
draw(O--B[2]);
draw(O--B[3]);
draw(O--B[4]);label("", A[1], S);
label("", A[2], E);
label("", A[3], N);
label("", A[4], W);
label("", B[1], NE);
label("", B[2], W);
label("", B[3], SW);
label("", B[4], S);
label("", O, E);
[/asy]