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 15:44, 20 April 2014
Contents
- 1 Problem I1
- 2 Problem I2
- 3 Problem I3
- 4 Problem I4
- 5 Problem I5
- 6 Problem I6
- 7 Problem I7
- 8 Problem I8
- 9 Problem I9
- 10 Problem I10
- 11 Problem I11
- 12 Problem I12
- 13 Problem I13
- 14 Problem I14
- 15 Problem I15
- 16 Problem T1
- 17 Problem T2
- 18 Problem T3
- 19 Problem T4
- 20 Problem T5
- 21 Problem T6
- 22 Problem T7
- 23 Problem T8
- 24 Problem T9
- 25 Problem T10