Difference between revisions of "2000 PMWC Problems"

(Problem I8)
Line 29: Line 29:
 
== Problem I8 ==
 
== Problem I8 ==
  
 +
<asy>
 +
for(int i = 0; i < 4; ++i){
 +
if(i < 2){
 +
draw((i,0)--(i,3));
 +
}else{
 +
draw((i,0)--(i,2));
 +
}
 +
}
 +
for(int i = 0; i < 4; ++i){
 +
if(i < 3) draw((0,i)--(3,i));
 +
else draw((0,i)--(1,i));
 +
}
 +
filldraw(Circle((0,3),0.3),white);
 +
filldraw((2-0.3*cos(pi/2),1+0.3*sin(pi/2))--(2-0.3*cos(7pi/6),1+0.3*sin(7pi/6))--(2-0.3*cos(11pi/6),1+0.3*sin(11pi/6))--cycle,white);</asy>
 
[[2000 PMWC Problems/Problem I8|Solution]]
 
[[2000 PMWC Problems/Problem I8|Solution]]
  

Revision as of 19:01, 18 April 2014