Difference between revisions of "2001 PMWC Problems"

(Problem I3)
Line 9: Line 9:
 
== Problem I3 ==
 
== Problem I3 ==
  
 +
<asy>
 +
void wdot(pair p)
 +
{
 +
fill(circle(p,.025),white);
 +
draw(circle(p,.025),black);
 +
return;
 +
}
 +
import patterns;
 +
real eta=pi/2;
 +
pair A,B,C,D,E,F,G,O;
 +
A=origin;
 +
B=(1,0);
 +
C=(1,1);
 +
D=(0,1);
 +
O=(A+B+C+D)/4;
 +
draw(A--B--C--D--cycle);
 +
E=(O.x+cos(-eta/4),O.y+sin(-eta/4));
 +
G = rotate(90,O)*E;
 +
F=O+(G-O)+(E-O);
 +
draw(O--G--F--E--cycle);
 +
add("crosshatch",crosshatch(.6mm));
 +
pair a1, a2;
 +
a1 = intersectionpoint(O--G,D--C);
 +
a2 = intersectionpoint(B--C,O--E);
 +
fill(O--a1--C--a2--cycle,pattern("crosshatch"));
 +
wdot(F);
 +
wdot(G);
 +
wdot(O);
 +
wdot(a1);
 +
wdot(a2);
 +
wdot(A);
 +
wdot(B);
 +
wdot(C);
 +
wdot(D);
 +
wdot(E);
 +
label("$A$",A,SW);
 +
label("$B$",B,SW);
 +
label("$C$",C,E);
 +
label("$D$",D,W);
 +
label("$E$",E,S);
 +
label("$F$",F,E);
 +
label("$G$",G,NE);
 +
label("$O$",O,W);
 +
//Credit to dasobson for the diagram</asy>
 
[[2001 PMWC Problems/Problem I3|Solution]]
 
[[2001 PMWC Problems/Problem I3|Solution]]
  

Revision as of 14:15, 20 April 2014