ABCDEFGHIJKLMNOPQRSTUVWXY
1
Manual: Wheel 1 refers to the innermost wheel, wheel 5 refers to the outermost wheel.
A 1 in column 2, row 5 for example means that when you click wheel 2, wheel 5 moves.
A 0 in column 3, row 4 for example means that when you click wheel 3, wheel 4 does not move.
The wheels section should contain only 0s and 1s
For the initial position, 0 means up, 1 means right, 2 means down, 3 means left.
Use your first 5 moves to click each wheel and keep track which moves which, then put the data in
below.
The solution tells you the number of times to click each wheel CLOCKWISE
You may get an error, this is because one of the wheel columns is the sum of 2 or more of the other
columns (including repeats and subtraction)
Working out which ones are the problem is a lotta effort, I give an example of what to do instead on
the "Error Example" sheet
2
3
4
5
6
7
8
9
10
11
12
13
14
WheelsInitial Position of WheelsSolution
15
12345
16
1100111#REF!
17
21110020
18
30010010
19
41101010
20
50011110
21
22
1010-1#REF!#REF!
23
-11-2010
24
001003
25
0-11103
26
01-2-11#REF!
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100