Difference between revisions of "2001 PMWC Problems"

(Problem T3)
(Problem T9)
Line 166: Line 166:
 
== Problem T9 ==
 
== Problem T9 ==
  
 +
<asy>
 +
void wdot(pair p)
 +
{
 +
fill(circle(p,.025),white);
 +
draw(circle(p,.025),black);
 +
return;
 +
}
 +
draw(circle(origin,1));
 +
pair z = expi(3pi/10);
 +
pair[] rotations;
 +
int max = 7;
 +
for(int i = 0; i < max; ++i)
 +
{
 +
rotations.push(rotate(-360*i/7)*z);
 +
}
 +
int i = 1;
 +
for(pair x : rotations)
 +
{
 +
wdot(x);
 +
label("$" + string(i) + "$", x , unit(x));
 +
++i;
 +
}
 +
//Credit to dasobson for the diagram</asy>
 
[[2001 PMWC Problems/Problem T9|Solution]]
 
[[2001 PMWC Problems/Problem T9|Solution]]
  

Revision as of 16:44, 20 April 2014