Difference between revisions of "2000 PMWC Problems"

(Problem I8)
(Problem I13)
Line 63: Line 63:
 
== Problem I13 ==
 
== Problem I13 ==
  
 +
<asy>
 +
void unitsquare(pair p){
 +
draw(p--(p.x+1,p.y)--(p.x+1,p.y+1)--(p.x,p.y+1)--cycle);
 +
return;
 +
}
 +
fill(buildcycle(arc((2,0.5),(2,0),(2,1)),(2,1)--(0,1)--(2.5,0.5)),gray);
 +
unitsquare((0,0));
 +
draw((1,0)--(2,0)--(2,1)--(1,1));
 +
draw(arc((2,0.5),(2,0),(2,1)));
 +
label("$A$",(0,1),NW);
 +
label("$B$",(0,0),SW);
 +
label("$C$",(1,0),S);
 +
label("$D$",(1,1),N);
 +
label("$E$",(2,0),S);
 +
label("$F$",(2.5,0.5),E);
 +
label("$G$",(2,1),N);</asy>
 
[[2000 PMWC Problems/Problem I13|Solution]]
 
[[2000 PMWC Problems/Problem I13|Solution]]
  

Revision as of 19:01, 18 April 2014