Você está na página 1de 126

Mathematics By Adi Cox

CONTENT
1-Encrypt
2-The-4-x-4-Magic-Square
3-The-Hour-And-Minute-Hand-Time-Problem
4-An-Introduction-to-Stifled-Numbers
5-S-1-Stifled-Minus-One-Numbers
6-Finding-Fractions-in-Other-Bases(1)
7-Chaos
8-Factorizing-Cubic-Equations-of-the-Form-Ax-3-Bx-2-Cx-D-0
9-Matrices(1)
10-Problem-2-500-Factors
11-Problem-1-1st-May-2013
12-The-Investigation-Of-A-Tetrahedron-By-Adi-Cox
13-The-4-x-4-Magic-Square-2
14-Noughts-and-Crosses-Orbits-and-Stabilizers(1)
15-The-Family-of-Adi-Polytopes(1)
16-Find-The-Simplex-Edge-Length-X
17-Applications-and-Non-Euclidean-Geometry
18-Chromogeometry

Encryption
The first 26 prime numbers represent the
alphabet respectively.
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

2
3
5
7
11
13
17
19
23
29
31
37
41
43
47
53
59
61
67
71
73
79
83
89
97
101

Find the prime factors of the numbers


below to get the anagrams of 15 words
which make a poem.
2926
910865603
12749
11155
7111616706109
27778
134
2
1418620891919
611
27274312321795
60865
10414452530
63762414463
279070946

The 4 x 4 Magic Square by Adi Cox


---------------------------------------------------------------To find the value that a line equals in a 4x4 magic square with
numbers from 1 to 16 we add those numbers from 1 to 16 then
divide the answer by 4.
1+2+3+4+5+6+7+8+9+10+11+12+13+14+15+16=136
136/4=34
_________________________________
|
|
|
|
|
| 4 | 14 | 15 | 1 |
|_______|_______|_______|_______|
|
|
|
|
|
| 9 | 7 | 6 | 12 |
|_______|_______|_______|_______|
|
|
|
|
|
| 5 | 11 | 10 | 8 |
|_______|_______|_______|_______|
|
|
|
|
|
| 16 | 2 | 3 | 13 |
|_______|_______|_______|_______|

The html file that finds the 4 partition that adds up to 34:
---------------------------------------------------------------<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A for loop</title>
</head>
<body>
<script type="text/javascript" language="javascript">
document.write("<h3>An Investigation Of 4 Partitions<h3>")
for (a = 1; a <= 34; a++)
{
for (b = 1; b <= 34; b++)
{
for (c = 1; c <= 34; c++)
{
for (d = 1; d <= 34; d++)
{
if((a + b + c + d == 34)
&&(a != b)&&(a != c)&&(a != d)&&(b != c)&&(b != c)&&(c != d)
&&(a<b)&&(b<c)&&(c<d))
{
document.write(a," + ",b," + ",c," + ",d,"
= ", a + b + c + d,"<br />");
}
}

}
}
}
</script>
</body>
</html>
---------------------------------------------------------------The above html file gives the following 86 results:
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
3
3
3
3
3
3
3
3

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

2 + 15 + 16 = 34
3 + 14 + 16 = 34
4 + 13 + 16 = 34
4 + 14 + 15 = 34
5 + 12 + 16 = 34
5 + 13 + 15 = 34
6 + 11 + 16 = 34
6 + 12 + 15 = 34
6 + 13 + 14 = 34
7 + 10 + 16 = 34
7 + 11 + 15 = 34
7 + 12 + 14 = 34
8 + 9 + 16 = 34
8 + 10 + 15 = 34
8 + 11 + 14 = 34
8 + 12 + 13 = 34
9 + 10 + 14 = 34
9 + 11 + 13 = 34
10 + 11 + 12 = 34
3 + 13 + 16 = 34
3 + 14 + 15 = 34
4 + 12 + 16 = 34
4 + 13 + 15 = 34
5 + 11 + 16 = 34
5 + 12 + 15 = 34
5 + 13 + 14 = 34
6 + 10 + 16 = 34
6 + 11 + 15 = 34
6 + 12 + 14 = 34
7 + 9 + 16 = 34
7 + 10 + 15 = 34
7 + 11 + 14 = 34
7 + 12 + 13 = 34
8 + 9 + 15 = 34
8 + 10 + 14 = 34
8 + 11 + 13 = 34
9 + 10 + 13 = 34
9 + 11 + 12 = 34
4 + 11 + 16 = 34
4 + 12 + 15 = 34
4 + 13 + 14 = 34
5 + 10 + 16 = 34
5 + 11 + 15 = 34
5 + 12 + 14 = 34
6 + 9 + 16 = 34
6 + 10 + 15 = 34

3
3
3
3
3
3
3
3
3
3
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
5
5
5
5
5
5
5
5
5
5
6
6
6
6
7

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

6
6
7
7
7
7
8
8
8
9
5
5
5
5
6
6
6
6
7
7
7
7
8
8
9
6
6
6
6
6
7
7
7
8
8
7
7
7
8
8

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

11 + 14 = 34
12 + 13 = 34
8 + 16 = 34
9 + 15 = 34
10 + 14 = 34
11 + 13 = 34
9 + 14 = 34
10 + 13 = 34
11 + 12 = 34
10 + 12 = 34
9 + 16 = 34
10 + 15 = 34
11 + 14 = 34
12 + 13 = 34
8 + 16 = 34
9 + 15 = 34
10 + 14 = 34
11 + 13 = 34
8 + 15 = 34
9 + 14 = 34
10 + 13 = 34
11 + 12 = 34
9 + 13 = 34
10 + 12 = 34
10 + 11 = 34
7 + 16 = 34
8 + 15 = 34
9 + 14 = 34
10 + 13 = 34
11 + 12 = 34
8 + 14 = 34
9 + 13 = 34
10 + 12 = 34
9 + 12 = 34
10 + 11 = 34
8 + 13 = 34
9 + 12 = 34
10 + 11 = 34
9 + 11 = 34
9 + 10 = 34

---------------------------------------------------------------The patterns that the 4 partitions above make on the magic


square below, in their respective order.
_________________________________
|
|
|
|
|
| 4 | 14 | 15 | 1 |
|_______|_______|_______|_______|
|
|
|
|
|
| 9 | 7 | 6 | 12 |
|_______|_______|_______|_______|
|
|
|
|
|
| 5 | 11 | 10 | 8 |
|_______|_______|_______|_______|
|
|
|
|
|
| 16 | 2 | 3 | 13 |
|_______|_______|_______|_______|

(1)

(2)

(3)

(4)

(5)

(6)

(7)

(8)

(9)

(10)

(11)

(12)

O
O
O
X

O
O
O
X

X
O
O
O

X
O
O
O

1 + 2 + 15 + 16 = 34

O
O
O
X

X
O
O
O

O
O
O
X

X
O
O
O

1 + 3 + 14 + 16 = 34

X
O
O
X

O
O
O
O

O
O
O
O

X
O
O
X

1 + 4 + 13 + 16 = 34

X
O
O
O

X
O
O
O

X
O
O
O

X
O
O
O

1 + 4 + 14 + 15 = 34

O
O
X
X

O
O
O
O

O
O
O
O

X
X
O
O

O
O
X
O

O
O
O
O

X
O
O
O

X
O
O
X

1 + 5 + 13 + 15 = 34

O
O
O
X

O
O
X
O

O
X
O
O

X
O
O
O

1 + 6 + 11 + 16 = 34

O
O
O
O

O
O
O
O

X
X
O
O

X
X
O
O

1 + 6 + 12 + 15 = 34

O
O
O
O

X
O
O
O

O
X
O
O

X
O
O
X

1 + 6 + 13 + 14 = 34

O
O
O
X

O
X
O
O

O
O
X
O

X
O
O
O

1 + 7 + 10 + 16 = 34

O
O
O
O

O
X
X
O

X
O
O
O

X
O
O
O

1 + 7 + 11 + 15 = 34

O X O X
O X O X

1 + 7 + 12 + 14 = 34

1 + 5 + 12 + 16 = 34

O O O O
O O O O
(13)

(14)

(15)

(16)

(17)

(18)

(19)

(20)

(21)

(22)

(23)

(24)

O
X
O
X

O
O
O
O

O
O
O
O

X
O
X
O

1 + 8 + 9 + 16 = 34

O
O
O
O

O
O
O
O

X
O
X
O

X
O
X
O

1 + 8 + 10 + 15 = 34

O
O
O
O

X
O
X
O

O
O
O
O

X
O
X
O

1 + 8 + 11 + 14 = 34

O
O
O
O

O
O
O
O

O
O
O
O

X
X
X
X

1 + 8 + 12 + 13 = 34

O
X
O
O

X
O
O
O

O
O
X
O

X
O
O
O

1 + 9 + 10 + 14 = 34

O
X
O
O

O
O
X
O

O
O
O
O

X
O
O
X

1 + 9 + 11 + 13 = 34

O
O
O
O

O
O
X
O

O
O
X
O

X
X
O
O

1 + 10 + 11 + 12 = 34

O
O
O
X

O
O
O
X

O
O
O
X

O
O
O
X

2 + 3 + 13 + 16 = 34

O
O
O
O

X
O
O
X

X
O
O
X

O
O
O
O

2 + 3 + 14 + 15 = 34

X
O
O
X

O
O
O
X

O
O
O
O

O
X
O
O

2 + 4 + 12 + 16 = 34

X
O
O
O

O
O
O
X

X
O
O
O

O
O
O
X

2 + 4 + 13 + 15 = 34

O O O O
O O O O

2 + 5 + 11 + 16 = 34

X X O O
X X O O
(25)

(26)

(27)

(28)

(29)

(30)

(31)

(32)

(33)

(34)

(35)

(36)

O
O
X
O

O
O
O
X

X
O
O
O

O
X
O
O

2 + 5 + 12 + 15 = 34

O
O
X
O

X
O
O
X

O
O
O
O

O
O
O
X

2 + 5 + 13 + 14 = 34

O
O
O
X

O
O
O
X

O
X
X
O

O
O
O
O

2 + 6 + 10 + 16 = 34

O
O
O
O

O
O
X
X

X
X
O
O

O
O
O
O

2 + 6 + 11 + 15 = 34

O
O
O
O

X
O
O
X

O
X
O
O

O
X
O
O

2 + 6 + 12 + 14 = 34

O
X
O
X

O
X
O
X

O
O
O
O

O
O
O
O

2 + 7 + 9 + 16 = 34

O
O
O
O

O
X
O
X

X
O
X
O

O
O
O
O

2 + 7 + 10 + 15 = 34

O
O
O
O

X
X
X
X

O
O
O
O

O
O
O
O

2 + 7 + 11 + 14 = 34

O
O
O
O

O
X
O
X

O
O
O
O

O
X
O
X

2 + 7 + 12 + 13 = 34

O
X
O
O

O
O
O
X

X
O
O
O

O
O
X
O

2 + 8 + 9 + 15 = 34

O
O
O
O

X
O
O
X

O
O
X
O

O
O
X
O

2 + 8 + 10 + 14 = 34

O O O O
O O O O

2 + 8 + 11 + 13 = 34

O X O X
O X O X
(37)

(38)

(39)

(40)

(41)

(42)

(43)

(44)

(45)

(46)

(47)

(48)

O
X
O
O

O
O
O
X

O
O
X
O

O
O
O
X

2 + 9 + 10 + 13 = 34

O
X
O
O

O
O
X
X

O
O
O
O

O
X
O
O

2 + 9 + 11 + 12 = 34

X
O
O
X

O
O
X
O

O
O
O
X

O
O
O
O

3 + 4 + 11 + 16 = 34

X
O
O
O

O
O
O
O

X
O
O
X

O
X
O
O

3 + 4 + 12 + 15 = 34

X
O
O
O

X
O
O
O

O
O
O
X

O
O
O
X

3 + 4 + 13 + 14 = 34

O
O
X
X

O
O
O
O

O
O
X
X

O
O
O
O

3 + 5 + 10 + 16 = 34

O
O
X
O

O
O
X
O

X
O
O
X

O
O
O
O

3 + 5 + 11 + 15 = 34

O
O
X
O

X
O
O
O

O
O
O
X

O
X
O
O

3 + 5 + 12 + 14 = 34

O
X
O
X

O
O
O
O

O
X
O
X

O
O
O
O

3 + 6 + 9 + 16 = 34

O
O
O
O

O
O
O
O

X
X
X
X

O
O
O
O

3 + 6 + 10 + 15 = 34

O
O
O
O

X
O
X
O

O
X
O
X

O
O
O
O

3 + 6 + 11 + 14 = 34

O O O O
O O X X

3 + 6 + 12 + 13 = 34

O O O O
O O X X
(49)

(50)

(51)

(52)

(53)

(54)

(55)

(56)

(57)

(58)

(59)

(60)

O
O
O
X

O
X
O
O

O
O
O
X

O
O
X
O

3 + 7 + 8 + 16 = 34

O
X
O
O

O
X
O
O

X
O
O
X

O
O
O
O

3 + 7 + 9 + 15 = 34

O
O
O
O

X
X
O
O

O
O
X
X

O
O
O
O

3 + 7 + 10 + 14 = 34

O
O
O
O

O
X
X
O

O
O
O
X

O
O
O
X

3 + 7 + 11 + 13 = 34

O
X
O
O

X
O
O
O

O
O
O
X

O
O
X
O

3 + 8 + 9 + 14 = 34

O
O
O
O

O
O
O
O

O
O
X
X

O
O
X
X

3 + 8 + 10 + 13 = 34

O
O
O
O

O
O
X
O

O
O
O
X

O
X
X
O

3 + 8 + 11 + 12 = 34

O
X
O
O

O
O
O
O

O
O
X
X

O
X
O
O

3 + 9 + 10 + 12 = 34

X
X
X
X

O
O
O
O

O
O
O
O

O
O
O
O

4 + 5 + 9 + 16 = 34

X
O
X
O

O
O
O
O

X
O
X
O

O
O
O
O

4 + 5 + 10 + 15 = 34

X
O
X
O

X
O
X
O

O
O
O
O

O
O
O
O

4 + 5 + 11 + 14 = 34

X O O O
O O O X

4 + 5 + 12 + 13 = 34

X O O O
O O O X
(61)

(62)

(63)

(64)

(65)

(66)

(67)

(68)

(69)

(70)

(71)

(72)

X
O
O
X

O
O
O
O

O
X
O
O

O
O
X
O

4 + 6 + 8 + 16 = 34

X
X
O
O

O
O
O
O

X
X
O
O

O
O
O
O

4 + 6 + 9 + 15 = 34

X
O
O
O

X
O
O
O

O
X
X
O

O
O
O
O

4 + 6 + 10 + 14 = 34

X
O
O
O

O
O
X
O

O
X
O
O

O
O
O
X

4 + 6 + 11 + 13 = 34

X
O
O
O

O
X
O
O

X
O
O
O

O
O
X
O

4 + 7 + 8 + 15 = 34

X
X
O
O

X
X
O
O

O
O
O
O

O
O
O
O

4 + 7 + 9 + 14 = 34

X
O
O
O

O
X
O
O

O
O
X
O

O
O
O
X

4 + 7 + 10 + 13 = 34

X
O
O
O

O
X
X
O

O
O
O
O

O
X
O
O

4 + 7 + 11 + 12 = 34

X
X
O
O

O
O
O
O

O
O
O
O

O
O
X
X

4 + 8 + 9 + 13 = 34

X
O
O
O

O
O
O
O

O
O
X
O

O
X
X
O

4 + 8 + 10 + 12 = 34

X
X
O
O

O
O
X
O

O
O
X
O

O
O
O
O

4 + 9 + 10 + 11 = 34

O O O O
O X X O

5 + 6 + 7 + 16 = 34

X O O O
X O O O
(73)

(74)

(75)

(76)

(77)

(78)

(79)

(80)

(81)

(82)

(83)

(84)

O
O
X
O

O
O
O
O

X
X
O
O

O
O
X
O

5 + 6 + 8 + 15 = 34

O
X
X
O

X
O
O
O

O
X
O
O

O
O
O
O

5 + 6 + 9 + 14 = 34

O
O
X
O

O
O
O
O

O
X
X
O

O
O
O
X

5 + 6 + 10 + 13 = 34

O
O
X
O

O
O
X
O

O
X
O
O

O
X
O
O

5 + 6 + 11 + 12 = 34

O
O
X
O

X
X
O
O

O
O
O
O

O
O
X
O

5 + 7 + 8 + 14 = 34

O
X
X
O

O
X
O
O

O
O
O
O

O
O
O
X

5 + 7 + 9 + 13 = 34

O
O
X
O

O
X
O
O

O
O
X
O

O
X
O
O

5 + 7 + 10 + 12 = 34

O
X
X
O

O
O
O
O

O
O
O
O

O
X
X
O

5 + 8 + 9 + 12 = 34

O
O
X
O

O
O
X
O

O
O
X
O

O
O
X
O

5 + 8 + 10 + 11 = 34

O
O
O
O

O
X
O
O

O
X
O
O

O
O
X
X

6 + 7 + 8 + 13 = 34

O
X
O
O

O
X
O
O

O
X
O
O

O
X
O
O

6 + 7 + 9 + 12 = 34

O O O O
O X X O

6 + 7 + 10 + 11 = 34

O X X O
O O O O
(85)

(86)

O
X
O
O

O
O
X
O

O
X
O
O

O
O
X
O

6 + 8 + 9 + 11 = 34

O
X
O
O

O
X
O
O

O
O
X
O

O
O
X
O

7 + 8 + 9 + 10 = 34

PROBLEM:
At what times should the hour and minute hand overlap
on a normal analogue clock, to the nearest second?
SOLUTION:
The number of seconds
after twelve O'clock

The time is

120(360/11)1
120(360/11)2
120(360/11)3
120(360/11)4
120(360/11)5
120(360/11)6
120(360/11)7
120(360/11)8
120(360/11)9
120(360/11)10
120(360/11)11

01hours
02hours
03hours
04hours
05hours
06hours
07hours
08hours
09hours
10hours
12hours

=
=
=
=
=
=
=
=
=
=
=

3927.'27'
7854.'54'
11781.'81'
15709.'09'
19636.'36'
23563.'63'
27490.'90'
31418.'18'
35345.'45'
39272.'72'
43200

05min
10min
16min
21min
27min
32min
38min
43min
49min
54min
00min

27sec
55sec
28sec
49sec
16sec
44sec
11sec
38sec
05sec
33sec
00sec

An Introduction To Stifled Numbers By Adi Cox

9/2/2013

______________________________________________________________________________
Stifled Numbers are numbers whose digits add up to its base. So there can be no
single digit stifled number in any base. In base ten the set 2s10 has 9 two
digit stifled numbers:
2s10 = {19, 28, 37, 46, 55, 64, 73, 82, 91}

The set 3s10 has 54 three digit stifled numbers in base ten:
3s10 = {109,
208,
307,
406,
505,
604,
703,
802,
901,

118,
217,
316,
415,
514,
613,
712,
811,
910}

127,
226,
325,
424,
523,
622,
721,
820,

136,
235,
334,
433,
532,
631,
730,

145,
244,
343,
442,
541,
640,

154,
253,
352,
451,
550,

163, 172, 181, 190,


262, 271, 280,
361, 370,
460,

19
28
36
43
49
54
58
61
63

The set 4s10 has 218 four digit stifled numbers in base ten:
4s10 = {1009,
1108,
1207,
1306,
1405,
1504,
1603,
1702,
1801,
1900,
2008,
2107,
2206,
2305,
2404,
2503,
2602,
2701,
2800,
3007,
3106,
3205,
3304,
3403,
3502,
3601,
3700,
4006,
4105,
4204,
4303,
4402,
4501,
4600,

1018,
1117,
1216,
1315,
1414,
1513,
1612,
1711,
1810,

1027,
1126,
1225,
1324,
1423,
1522,
1621,
1720,

1036,
1135,
1234,
1333,
1432,
1531,
1630,

1045,
1144,
1243,
1342,
1441,
1540,

1054,
1153,
1252,
1351,
1450,

1063, 1072, 1081, 1090,


1162, 1171, 1280,
1261, 1270,
1360,

2017,
2116,
2213,
2314,
2413,
2512,
2611,
2710,

2026,
2125,
2224,
2323,
2422,
2521,
2620,

2035,
2134,
2233,
2332,
2431,
2530,

2044,
2143,
2242,
2341,
2440,

2053, 2062, 2071, 2080


2152, 2161, 2170,
2251, 2260,
2350,

3016,
3015,
3214,
3313,
3412,
3511,
3610,

3025,
3024,
3223,
3322,
3421,
3520,

3034,
3033,
3232,
3331,
3430,

3043, 3052, 3061, 3070,


3042, 3051, 3060,
3241, 3250,
3340,

4015,
4114,
4213,
4312,
4411,
4510,

4024,
4123,
4222,
4321,
4420,

4033, 4042, 4051, 4060,


4132, 4141, 4150,
4231, 4240,
4330,

73
82
90
97
103
108
112
115
117
118
127
135
142
148
153
157
160
162
163
171
178
184
189
193
196
198
199
206
212
217
221
224
226
227

5005,
5104,
5203,
5302,
5401,
5500,
6004,
6103,
6202,
6301,
7003,
7102,
7201,
7300,
8002,
8101,
8200,
9001,
9100}

5014,
5113,
5212,
5311,
5410,

5023, 5032, 5041, 5050,


5122, 5131, 5140,
5221, 5230,
5320,

6013,
6112,
6211,
6310,
7012,
7111,
7210,

6022, 6031, 6040,


6121, 6130,
6220,
7021, 7030,
7120,

8011, 8020,
8110,
9010,

233
238
242
245
247
248
253
257
260
262
266
269
271
272
275
277
278
280
281

So from the above we can see that there are 281 base 10 stifled digits less than
10000.
Greater Stifled Numbers
Greater Stifled Numbers are numbers whose digits add up to a value greater than
its base.
In base ten the set 2s>10 has 36 two digit greater stifled numbers:
2s>10 = {29,
38, 39,
47, 48,
56, 57,
65, 66,
74, 75,
83, 84,
92, 93,

49,
58,
67,
76,
85,
94,

59,
68,
77,
86,
95,

69,
78, 79,
87, 88, 89,
96, 97, 98, 99}

Lesser Stifled Numbers


Lesser Stifled Numbers are numbers whose digits add up to a value less than its
base.
In base ten the set 1s<10 has 10 one digit lesser stifled numbers:
1s<10 = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
In base ten the set 2s<10 has 43 two digit lesser stifled numbers:
2s<10 = {10, 11, 12, 13, 14, 15, 16, 17, 18,
20, 21, 22, 23, 24, 25, 26, 27,
30, 31, 32, 33, 34, 35, 36,
40, 41, 42, 43, 44, 45,
50, 51, 52, 53, 54,

60, 61, 62, 63,


70, 71, 72,
80, 81,
90}
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Binary
In base 2, any number that is 2^a + 2^b is a stifled number where a and b are
positive integers and are not equal.
2^0
1

2^1
2

2^2
4

2^3
8

2^4
16

2^5
32

2^6
64

2^7
128

s2

nth

1
1
0
1
0
0
1
0
0
0
1
0
0
0
0
1
0
0
0
0
0
1
0
0
0
0
0
0

1
0
1
0
1
0
0
1
0
0
0
1
0
0
0
0
1
0
0
0
0
0
1
0
0
0
0
0

0
1
1
0
0
1
0
0
1
0
0
0
1
0
0
0
0
1
0
0
0
0
0
1
0
0
0
0

0
0
0
1
1
1
0
0
0
1
0
0
0
1
0
0
0
0
1
0
0
0
0
0
1
0
0
0

0
0
0
0
0
0
1
1
1
1
0
0
0
0
1
0
0
0
0
1
0
0
0
0
0
1
0
0

0
0
0
0
0
0
0
0
0
0
1
1
1
1
1
0
0
0
0
0
1
0
0
0
0
0
1
0

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1
1
1
1
1
1
0
0
0
0
0
0
1

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1
1
1
1
1
1
1

3
5
6
9
10
12
17
18
20
24
33
34
36
40
48
65
66
68
72
80
96
129
130
132
136
144
160
192

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

Stifled Numbers (Part 2)


by Adi Cox.
18-3-13
______________________________________________________________________________
Number Stifled set
x
of bases

Stifled Numbers in their


respective bases

n
Stifled
Numbers
______________________________________________________________________________
1
2

{NULL}
{NULL}

0
0

3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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

{2}
{NULL}
{2,3}
{2}
{3,4}
{NULL}
{2,5}
{2}
{3,6}
{2}
{3,4,5,7}
{NULL}
{3,8}
{6}
{2,5,9}
{2}
{3,4,7,10}
{2}
{3,5,6,11}
{4,8}
{12}
{2}
{4,7,9,13}
{6}
{14}
{4,10}
{3,5,8,15}
{NULL}
{3,6,7,11,16}
{NULL}
{2,3,5,9,17}
{2,4,12}
{18}
{2,8}
{3,4,5,7,10,13,19}
{NULL}
{3,20}
{2,4,14}
{4,6,9,11,21}
{NULL}
{7,8,15,22}
{NULL}
{3,5,12,23}
{6,10,26}
{24}
{2,25}
{4,9,13,17}
{8}
{6,11,26}
{4,18}
{5,14,27}
{NULL}
{3,7,10,19,28}
{6,12}
{3,5,8,9,15,29}
{20}
{30}
{NULL}
{5,6,7,11,13,16,21,31}
{NULL}

11
101,12
110
21,13
1001,14
1010
102,15
1100
111,31,23,16
120,17
24
10001,32,18
10020
201,103,25,19
10100
210,41,33,1(10)
112,26
1(11)
11000
121,34,27,1(12)
42
1(13)
130,28
1002,104,35,1(14)
1011,51,43,29,1(15)
10001,1020,113,36,1(16)
10010,202,2(10)
1(17)
100100,44
1101,211,122,52,37,2(11),1(18)
1110,1(19)
101000,220,2(12)
131,105,45,38,1(20)
61,53,2(13),1(21)
1200,140,39,1(22)
114,46,2(14)
1(23)
110000,1(24)
301,54,3(10),2(15)
62
123,47,1(25)
310,2(16)
203,3(11),1(26)
2001,106,55,2(17),1(27)
132,48
2010,212,71,63,3(12),1(28)
2(18)
1(29)
221,141,115,56,49,3(13),2(19),1(30)
-

1
0
2
1
2
0
2
1
2
1
4
0
2
1
3
1
4
1
4
2
1
1
4
1
1
2
4
0
5
0
5
3
1
2
7
0
2
3
5
0
4
0
4
3
1
2
4
1
3
2
3
0
5
2
6
1
1
0
8
0

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

{3,32}
{10,22}
{2,5,9,17,33}
{2,6,14}
{4,7,12,23,34}
{2}
{18,35}
{4,24}
{8,11,15,36}
{2}
{4,7,9,10,13,19,25,37}
{NULL}
{38}
{4,6,16,26}
{5,20,39}
{8,12}
{7,14,27,40}
{2}
{5,6,11,17,21,41}
{4,10,28}
{3,42}
{NULL}
{3,4,5,7,8,13,
15,22,29,43}
{6,18}
{3,44}
{4,30}
{9,12,23,45}
{NULL}
{3,6,7,10,11,16,
19,24,31,46}
{8,14}
{3,24,47}
{32}
{48}
{2,6,20}
{4,9,13,17,25,33,49}
{NULL}
{3,8,15,50}
{4,12,34}

2100,1(31)
64,2(20)
1000001,230,72,3(14),1(32)
1000010,150,4(10)
1003,124,57,2(21),1(33)
1000100
3(15),1(34)
1012,2(22)
107,65,4(11),1(35)
1001000
1021,133,81,73,58,3(16),2(23),1(36)
1(37)
1030,204,4(12),2(24)
302,3(17),1(38)
116,66
142,59,2(25),1(39)
1010000
311,213,74,4(13),3(18)1(40)
1102,82,2(26)
10002,1(41)
10011,1111,320,151,125,67,
5(10),3(19),2(27),1(42)
222,4(14)
10020,1(43)
1120,2(28)
108,75,3(20),1(44)
10101;231,160,91,83,5(11),
4(15),3(21),2(29),1(45)
134,68
10110,3(21),1(46)
2(30)
1(47)
1100000,240,4(16)
1201,117,76,5(12),3(22),2(31),1(48)
10200,143,69,1(49)
1210,84,2(32)

2
2
5
3
5
1
2
2
4
1
8
0
1
4
3
2
4
1
6
3
2
0
10
2
2
2
4
0
10
2
3
1
1
3
7
0
4
3

__________________________________________________________________________
The html file below was used to find the stifled numbers in their various
bases above.
(Change the value of B to change the base, which is currently set to binary)
__________________________________________________________________________
<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A for loop</title>
</head>
<body>
<script type="text/javascript" language="javascript">
document.write("<h3>The 6 digit base B numbers = B<h3>")

B=2;
u=0;
v=B-1;
for (a = u; a <= v;
{
for (b = u;
{
for
{
for (d = u; d <= v;
{
for (e = u;
{
for
{

a++)
b <= v; b++)
(c = u; c <= v; c++)
d++)
e <= v; e++)
(f = u; f <= v; f++)

if(a + b + c + d + e + f == B)
{
document.write(a,b,c,d,e,f," = ",
B*B*B*B*B*a + B*B*B*B*b + B*B*B*c + B*B*d + B*e + f ,"<br />");
}
}
}
}
}
}
}
</script>
</body>
</html>

(S-1) Stifled Minus One Numbers:


These numbers add up to one less than their base.
by Adi Cox.
7-5-13
______________________________________________________________________________
Number S-1 set
x
of bases

S-1 Numbers in their


respective bases

n
S-1
Numbers
______________________________________________________________________________
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
44
45
46
47
48
49

0
10,2
3
100,11,4
5
20,12,6
7
1000,13,8
21,9
101,14,(10)
(11)
110,30,22,15,(12)
(13)
16,(14)
23,(15)
10000,31,17,(16)
(17)
200,102,24,18,(18)
(19)
40,32,19,(20)
111,25,(21)
1(10),(22)
(23)
120,33,26,1(11),(24)
41,(25)
1(12),(26)
27,(27)
1001,103,34,1(13),(28)
(29)
1010,50,42,28,1(14),(30)
(31)
100000,112,35,1(15),(32)
201,29,(33)
1(16),(34)
43,(35)
1100,210,121,51,36,2(10),1(17),(36)
(37)
1(18),(38)
2(11),(39)
130,104,44,37,1(19),(41)
(42)
60,52,2(12),1(20),(42)
38,1(21),(44)
113,45,2(13),(45)
1(22),(46)
(47)
300,53,39,2(14),1(23),(48)
61,(49)

{1}
{2,3}
{4}
{2,3,5}
{6}
{3,4,7}
{8}
{2,5,9}
{4,10}
{3,6,11}
{12}
{3,4,5,7,13}
{14}
{8,15}
{6,16}
{2,5,9,17}
{18}
{3,4,7,10,19}
{20}
{5,6,11,21}
{4,8,22}
{12,23}
{24}
{4,7,9,13,25}
{6,26}
{14,27}
{10,28}
{3,5,8,15,29}
{30}
{3,6,7,11,16,31}
{32}
{2,5,9,17,33}
{4,12,34}
{18,35}
{8,36}
{3,4,5,7,10,13,19,37
{38}
{20,39}
{14,40}
{5,6,9,11,21,41}
{42}
{7,8,15,22,43}
{12,23,45}
{6,10,16,46}
{24,47}
{48}
{4,9,13,17,25,49}
{8,50}

1
2
1
3
1
3
1
3
2
3
1
5
1
2
2
4
1
5
1
4
3
2
1
5
2
2
2
5
1
6
1
5
3
2
2
8
1
2
2
6
1
5
3
4
2
1
6
2

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

{6,11,26,51}
{18,52}
{5.14,27,53}
{54}
{3,7,10,19,28,55}
{6,12,56}
{5,8,9,15,29,57}
{20,58}
{30,59}
{60}
{5,6,7,11,13,
16,21,31,61}
{62}
{32,63}
{10,22,64}
{2,9,17,33,65}
{14,66}
{4,7,12,23,34,67}
{68}
{18,35,69}
{4,24,70}
{11,15,36,71}
{72}
{4,7,9,10,13,
19,25,37,73}
{74}
{38,75}
{6,16,26,76}
{5,20,39,77}
{8,12,78}
{7,14,27,40,79}
{80}
{5,6,11,17,21,41,81}
{4,10,28,82}
{3,42,83}
{84}
{3,4,7,8,13,15,
22,29,43,85}
{6,18,86}
{44,87}
{30}
{12,23,45,89}
{90}
{3,6,10,11,16,
19,31,46,91}
{8,14,92}
{24,47,93}
{32,94}
{48,95}
{20,96}
{4,13,17,25,33,49.97}
{98}
{8,15,50}
{12,34}
{5,11,51}

122,46,1(24),(50)
2(15),(51)
202,3(10),1(25),(52)
(53)
2000,105,54,2(16),1(26),(54)
131,47,(55)
211,70,62,3(11),1(27),(56)
2(17),(57)
1(28),(58)
(59)
220,140,114,55,48,
312,218,129,(60)
(61)
1(30),(62)
63,2(19),(63)
1000000,71,3(13),1(31),(64)
49,(65)
1002,123,56,2(20),1(32),(66)
(67)
3(14),1(33),(68)
1011,2(21),(69)
64,4(10),1(34),(70)
71
1020,132,80,72,57,
3(15),2(22),1(35),(72)
(73)
1(36),(74)
203,4(11),2(23),(75)
301,3(16),1(37),(76)
115,65,(77)
141,58,2(24),1(38),(78)
(79)
310,212,73,4(12),3(17),1(39),(81)
1101,81,2(25),(82)
10001,1(40),(82)
(83)
10010,1110,150,124,66,59,
3(18),2(26),1(41),(84)
221,4(13),(85)
1(42),(86)
2(27),(87)
74,3(19),1(43),(88)
(89)
10100,230,90,82,5(10),
4(14),2(28),1(44),(90)
133,67,(91)
3(20),1(45),(92)
2(29),(93)
1(46),(94)
4(15),(95)
1200,75,5(11),3(21),2(30),1(47),(96)
(97)
142,68,1(48)
83,2(31)
400,91,1(49)

4
2
4
1
6
3
6
2
2
1
9
1
2
3
5
2
6
1
3
3
4
1
9
1
2
4
4
3
5
1
7
4
3
1
10
3
2
2
4
1
9
3
3
2
2
2
7
1
3
2
3

_______________________________________________________________________________
Finding Fractions In Other Bases
by Adi Cox

17-7-14

_______________________________________________________________________________
1/19 In Base 2
First find 19 in base 2:
19/2
9/2
4/2
2/2
1/2

=
=
=
=
=

9
4
2
1
0

rem
rem
rem
rem
rem

1
1
0
0
1

so 19 = 10011
Check the answer:
16
8
4
2
1
___________________________________
1

16 +

0 +

0 +

2 +

Long division in binary:


.
.
0.00001101011110010100001
__________________________
10011 | 1.00000000000000000000000
10011
11010
1110
11100
10011
10010
100100
10011
100010
10011
11110
10011
10110
10011
110
1100

19

11000
10011
100
1000
10000
100000
10011
.
.
0.0000110101111001010000110101111001010000110101111001010000110101111001010000

1/1
1/2
1/4
1/8
1/16
1/32
1/64
1/128 1/256 ...
_______________________________________________________________________________
0.

...

If we add up the first 9 one digits in the infinite binary power series for 1/19
we get:
1/32+1/64+1/256+1/1024+1/2048+1/4096+1/8192+1/65536+1/262144 = 0.051166574
where 1/19 = 0.052631579

Using an iterative formula to find 1/19 In Base 2 I have written a program using
html.
To change the base in the html script below change the value of a
and to change the fraction change the value of b.
_______________________________________________________________________________
<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A for loop</title>
</head>
<body>
<script type="text/javascript" language="javascript">
document.write("<h3>In base a, one divided by b gives: 0.x1,x2,x3,... xn.<h3>")

a=2;
document.write("a = ", a ,"<br />");
b=19;
document.write("b = ", b ,"<br /><br />");

c1=a%b;
d1=a/b;
x1=d1-(c1/b)
document.write("x1 = ", x1 ,"<br />");

c2=(c1*a)%b
d2=(c1*a)/b
x2=d2-(c2/b)
document.write("x2 = ", x2 ,"<br />");

c3=(c2*a)%b
d3=(c2*a)/b
x3=d3-(c3/b)
document.write("x3 = ", x3 ,"<br />");

c4=(c3*a)%b
d4=(c3*a)/b
x4=d4-(c4/b)
document.write("x4 = ", x4 ,"<br />");

c5=(c4*a)%b
d5=(c4*a)/b
x5=d5-(c5/b)
document.write("x5 = ", x5 ,"<br />");
c6=(c5*a)%b
d6=(c5*a)/b
x6=d6-(c6/b)
document.write("x6 = ", x6 ,"<br />");
c7=(c6*a)%b
d7=(c6*a)/b
x7=d7-(c7/b)
document.write("x7 = ", x7 ,"<br />");

c8=(c7*a)%b
d8=(c7*a)/b
x8=d8-(c8/b)
document.write("x8 = ", x8 ,"<br />");

c9=(c8*a)%b
d9=(c8*a)/b
x9=d9-(c9/b)
document.write("x9 = ", x9 ,"<br />");

c10=(c9*a)%b
d10=(c9*a)/b
x10=d10-(c10/b)
document.write("x10 = ", x10 ,"<br />");

c11=(c10*a)%b;
d11=(c10*a)/b;
x11=d11-(c11/b)
document.write("x11 = ", x11 ,"<br />");

c12=(c11*a)%b
d12=(c11*a)/b
x12=d12-(c12/b)
document.write("x12 = ", x12 ,"<br />");

c13=(c12*a)%b
d13=(c12*a)/b
x13=d13-(c13/b)
document.write("x13 = ", x13 ,"<br />");

c14=(c13*a)%b
d14=(c13*a)/b

x14=d14-(c14/b)
document.write("x14 = ", x14 ,"<br />");

c15=(c14*a)%b
d15=(c14*a)/b
x15=d15-(c15/b)
document.write("x15 = ", x15 ,"<br />");
c16=(c15*a)%b
d16=(c15*a)/b
x16=d16-(c16/b)
document.write("x16 = ", x16 ,"<br />");
c17=(c16*a)%b
d17=(c16*a)/b
x17=d17-(c17/b)
document.write("x17 = ", x17 ,"<br />");

c18=(c17*a)%b
d18=(c17*a)/b
x18=d18-(c18/b)
document.write("x18 = ", x18 ,"<br />");

c19=(c18*a)%b
d19=(c18*a)/b
x19=d19-(c19/b)
document.write("x19 = ", x19 ,"<br />");

c20=(c19*a)%b
d20=(c19*a)/b
x20=d20-(c20/b)
document.write("x20 = ", x20 ,"<br />");

c21=(c20*a)%b
d21=(c20*a)/b

x21=d21-(c21/b)
document.write("x21 = ", x21 ,"<br />");

c22=(c21*a)%b
d22=(c21*a)/b
x22=d22-(c22/b)
document.write("x22 = ", x22 ,"<br />");

c23=(c22*a)%b
d23=(c22*a)/b
x23=d23-(c23/b)
document.write("x23 = ", x23 ,"<br />");

c24=(c23*a)%b
d24=(c23*a)/b
x24=d24-(c24/b)
document.write("x24 = ", x24 ,"<br />");

c25=(c24*a)%b
d25=(c24*a)/b
x25=d25-(c25/b)
document.write("x25 = ", x25 ,"<br />");
c26=(c25*a)%b
d26=(c25*a)/b
x26=d26-(c26/b)
document.write("x26 = ", x26 ,"<br />");
c27=(c26*a)%b
d27=(c26*a)/b
x27=d27-(c27/b)
document.write("x27 = ", x27 ,"<br />");

c28=(c27*a)%b

d28=(c27*a)/b
x28=d28-(c28/b)
document.write("x28 = ", x28 ,"<br />");

c29=(c28*a)%b
d29=(c28*a)/b
x29=d29-(c29/b)
document.write("x29 = ", x29 ,"<br />");

c30=(c29*a)%b
d30=(c29*a)/b
x30=d30-(c30/b)
document.write("x30 = ", x30 ,"<br />");

c31=(c30*a)%b
d31=(c30*a)/b
x31=d31-(c31/b)
document.write("x31 = ", x31 ,"<br />");

c32=(c31*a)%b
d32=(c31*a)/b
x32=d32-(c32/b)
document.write("x32 = ", x32 ,"<br />");

c33=(c32*a)%b
d33=(c32*a)/b
x33=d33-(c33/b)
document.write("x33 = ", x33 ,"<br />");

c34=(c33*a)%b
d34=(c33*a)/b
x34=d34-(c34/b)
document.write("x34 = ", x34 ,"<br />");

c35=(c34*a)%b
d35=(c34*a)/b
x35=d35-(c35/b)
document.write("x35 = ", x35 ,"<br />");
c36=(c35*a)%b
d36=(c35*a)/b
x36=d36-(c36/b)
document.write("x36 = ", x36 ,"<br />");
c37=(c36*a)%b
d37=(c36*a)/b
x37=d37-(c37/b)
document.write("x37 = ", x37 ,"<br />");

c38=(c37*a)%b
d38=(c37*a)/b
x38=d38-(c38/b)
document.write("x38 = ", x38 ,"<br />");

c39=(c38*a)%b
d39=(c38*a)/b
x39=d39-(c39/b)
document.write("x39 = ", x39 ,"<br />");

c40=(c39*a)%b
d40=(c39*a)/b
x40=d40-(c40/b)
document.write("x40 = ", x40 ,"<br />");

c41=(c40*a)%b
d41=(c40*a)/b
x41=d41-(c41/b)
document.write("x41 = ", x41 ,"<br />");

c42=(c41*a)%b
d42=(c41*a)/b
x42=d42-(c42/b)
document.write("x42 = ", x42 ,"<br />");

c43=(c42*a)%b
d43=(c42*a)/b
x43=d43-(c43/b)
document.write("x43 = ", x43 ,"<br />");

c44=(c43*a)%b
d44=(c43*a)/b
x44=d44-(c44/b)
document.write("x44 = ", x44 ,"<br />");

c45=(c44*a)%b
d45=(c44*a)/b
x45=d45-(c45/b)
document.write("x45 = ", x45 ,"<br />");
c46=(c45*a)%b
d46=(c45*a)/b
x46=d46-(c46/b)
document.write("x46 = ", x46 ,"<br />");
c47=(c46*a)%b
d47=(c46*a)/b
x47=d47-(c47/b)
document.write("x47 = ", x47 ,"<br />");

c48=(c47*a)%b
d48=(c47*a)/b
x48=d48-(c48/b)
document.write("x48 = ", x48 ,"<br />");

c49=(c48*a)%b
d49=(c48*a)/b
x49=d49-(c49/b)
document.write("x49 = ", x49 ,"<br />");

c50=(c49*a)%b
d50=(c49*a)/b
x50=d50-(c50/b)
document.write("x50 = ", x50 ,"<br />");

</script>
</body>
</html>
_______________________________________________________________________________
The output of the above html program is below

_______________________________________________________________________________
In base a, one divided by b gives: 0.x1,x2,x3,... xn.
a = 2
b = 19
x1 = 0
x2 = 0
x3 = 0
x4 = 0
x5 = 0.9999999999999999
x6 = 1
x7 = 0
x8 = 1
x9 = 0
x10 = 0.9999999999999999
x11 = 1
x12 = 1
x13 = 1
x14 = 0
x15 = 0
x16 = 1
x17 = 0
x18 = 1
x19 = 0
x20 = 0
x21 = 0
x22 = 0
x23 = 0.9999999999999999

x24
x25
x26
x27
x28
x29
x30
x31
x32
x33
x34
x35
x36
x37
x38
x39
x40
x41
x42
x43
x44
x45
x46
x47
x48
x49
x50

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

1
0
1
0
0.9999999999999999
1
1
1
0
0
1
0
1
0
0
0
0
0.9999999999999999
1
0
1
0
0.9999999999999999
1
1
1
0

_______________________________________________________________________________
Some of the x values in the output above have .9rec in their answers.
if x=0.9rec
and x + y = 1
what is the value of y?
x=0.9rec
10x=9.9rec
10x - x = 9
9x = 9
x = 1
therefore 0.9rec == 1
so if x = 0.9rec
y = 0
where x + y = 1

The following fractions below in their various bases have been found to 70
places by a modified version of the html program above.
_______________________________________________________________________________
FRACTIONS 1/x IN BASE 2

1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0101010101010101010101010101010101010101010101010101010101010101010101
0.0100000000000000000000000000000000000000000000000000000000000000000000
0.0011001100110011001100110011001100110011001100110011001100110011001100
0.0010101010101010101010101010101010101010101010101010101010101010101010
0.0010010010010010010010010010010010010010010010010010010010010010010010
0.0010000000000000000000000000000000000000000000000000000000000000000000
0.0001110001110001110001110001110001110001110001110001110001110001110001
0.0001100110011001100110011001100110011001100110011001100110011001100110
0.0001011101000101110100010111010001011101000101110100010111010001011101
0.0001010101010101010101010101010101010101010101010101010101010101010101
0.0001001110110001001110110001001110110001001110110001001110110001001110
0.0001001001001001001001001001001001001001001001001001001001001001001001
0.0001000100010001000100010001000100010001000100010001000100010001000100
0.0001000000000000000000000000000000000000000000000000000000000000000000
0.0000111100001111000011110000111100001111000011110000111100001111000011
0.0000111000111000111000111000111000111000111000111000111000111000111000
0.0000110101111001010000110101111001010000110101111001010000110101111001
0.0000110011001100110011001100110011001100110011001100110011001100110011
0.0000110000110000110000110000110000110000110000110000110000110000110000
0.0000101110100010111010001011101000101110100010111010001011101000101110
0.0000101100100001011001000010110010000101100100001011001000010110010000
0.0000101010101010101010101010101010101010101010101010101010101010101010
0.0000101000111101011100001010001111010111000010100011110101110000101000
0.0000100111011000100111011000100111011000100111011000100111011000100111
0.0000100101111011010000100101111011010000100101111011010000100101111011
0.0000100100100100100100100100100100100100100100100100100100100100100100
0.0000100011010011110111001011000010001101001111011100101100001000110100
0.0000100010001000100010001000100010001000100010001000100010001000100010
0.0000100001000010000100001000010000100001000010000100001000010000100001
0.0000100000000000000000000000000000000000000000000000000000000000000000
0.0000011111000001111100000111110000011111000001111100000111110000011111
0.0000011110000111100001111000011110000111100001111000011110000111100001
0.0000011101010000011101010000011101010000011101010000011101010000011101
0.0000011100011100011100011100011100011100011100011100011100011100011100
0.0000011011101011001111100100010100110000011011101011001111100100010100
0.0000011010111100101000011010111100101000011010111100101000011010111100
0.0000011010010000011010010000011010010000011010010000011010010000011010
0.0000011001100110011001100110011001100110011001100110011001100110011001
0.0000011000111110011100000110001111100111000001100011111001110000011000
0.0000011000011000011000011000011000011000011000011000011000011000011000
0.0000010111110100000101111101000001011111010000010111110100000101111101
0.0000010111010001011100010111010001011101000101110100010111010001011101
0.0000010110110000010110110000010110110000010110110000010110110000010110
0.0000010110010000101100100001011001000010110010000101100100001011001000
0.0000010101110010011000100000101011100100110001000001010111001001100010
0.0000010101010101010101010101010101010101010101010101010101010101010101
0.0000010100111001011110000010100111001011110000010100111001011110000010
0.0000010100011110101110000101000111101011100001010001111010111000010100

FRACTIONS 1/x IN BASE 3


1/1
1/2
1/3
1/4
1/5
1/6

0.2222222222222222222222222222222222222222222222222222222222222222222222
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0202020202020202020202020202020202020202020202020202020202020202020202
0.0121012101210121012101210121012101210121012101210121012101210121012101
0.0111111111111111111111111111111111111111111111111111111111111111111111

1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0102120102120102120102120102120102120102120102120102120102120102120102
0.0101010101010101010101010101010101010101010101010101010101010101010101
0.0100000000000000000000000000000000000000000000000000000000000000000000
0.0022002200220022002200220022002200220022002200220022002200220022002200
0.0021100211002110021100211002110021100211002110021100211002110021100211
0.0020202020202020202020202020202020202020202020202020202020202020202020
0.0020020020020020020020020020020020020020020020020020020020020020020020
0.0012210012210012210012210012210012210012210012210012210012210012210012
0.0012101210121012101210121012101210121012101210121012101210121012101210
0.0012001200120012001200120012001200120012001200120012001200120012001200
0.0011202122110201001120212211020100112021221102010011202122110201001120
0.0011111111111111111111111111111111111111111111111111111111111111111111
0.0011021002211201220011021002211201220011021002211201220011021002211201
0.0011001100110011001100110011001100110011001100110011001100110011001100
0.0010212010212010212010212010212010212010212010212010212010212010212010
0.0010200102001020010200102001020010200102001020010200102001020010200102
0.0010112002100101120021001011200210010112002100101120021001011200210010
0.0010101010101010101010101010101010101010101010101010101010101010101010
0.0010020110221220211200100201102212202112001002011022122021120010020110
0.0010010010010010010010010010010010010010010010010010010010010010010010
0.0010000000000000000000000000000000000000000000000000000000000000000000
0.0002220002220002220002220002220002220002220002220002220002220002220002
0.0002210102011122200121202111000221010201112220012120211100022101020111
0.0002200220022002200220022002200220022002200220022002200220022002200220
0.0002121112210202220101110012020002121112210202220101110012020002121112
0.0002112100021121000211210002112100021121000211210002112100021121000211
0.0002110021100211002110021100211002110021100211002110021100211002110021
0.0002101022201212000210102220121200021010222012120002101022201212000210
0.0002022111010002022111010002022111010002022111010002022111010002022111
0.0002020202020202020202020202020202020202020202020202020202020202020202
0.0002012002220210220002012002220210220002012002220210220002012002220210
0.0002010112220212110002010112220212110002010112220212110002010112220212
0.0002002002002002002002002002002002002002002002002002002002002002002002
0.0002000200020002000200020002000200020002000200020002000200020002000200
0.0001222100012221000122210001222100012221000122210001222100012221000122
0.0001221001221001221001221001221001221001221001221001221001221001221001
0.0001212212020021112102221010010202201110120001212212020021112102221010
0.0001211201000121120100012112010001211201000121120100012112010001211201
0.0001210121012101210121012101210121012101210121012101210121012101210121
0.0001202112200012021122000120211220001202112200012021122000120211220001
0.0001201112100202200101100012011121002022001011000120111210020220010110
0.0001200120012001200120012001200120012001200120012001200120012001200120
0.0001122122002012111202221100100220210111020001122122002012111202221100
0.0001121201222110102100011212012221101021000112120122211010210001121201

FRACTIONS 1/x IN BASE 4


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12

0.3333333333333333333333333333333333333333333333333333333333333333333333
0.2000000000000000000000000000000000000000000000000000000000000000000000
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0303030303030303030303030303030303030303030303030303030303030303030303
0.0222222222222222222222222222222222222222222222222222222222222222222222
0.0210210210210210210210210210210210210210210210210210210210210210210210
0.0200000000000000000000000000000000000000000000000000000000000000000000
0.0130130130130130130301301301301301301301301301301301303013013013013013
0.0121212121212121212121212121212121212121212121212121212121212121212121
0.0113101131011310113101131011310113101131011310113101131011310113101131
0.0111111111111111111111111111111111111111111111111111111111111111111111

1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0103230103230103230103230103230103230103230103230103230103230103230103
0.0102102102102102102102102102102102102102102102102102102102102102102102
0.0101010101010101010101010101010101010101010101010101010101010101010101
0.0100000000000000000000000000000000000000000000000000000000000000000000
0.0033003300330033003300330033003300330033003300330033003300330033003300
0.0032032032032032032032032032032032032032032032032032032032032032032032
0.0031132110031132110031132110031132110031132110031132110031132110031132
0.0030303030303030303030303030303030303030303030303030303030303030303030
0.0030030030030030030030030030030030030030030030030030030030030030030030
0.0023220232202322023220232202322023220232202322023220232202322023220232
0.0023020112100230201121002302011210023020112100230201121002302011210023
0.0022222222222222222222222222222222222222222222222222222222222222222222
0.0022033113002203311300220331130022033113002203311300220331130022033113
0.0021312021312021312021312021312021312021312021312021312021312021312021
0.0021132310021132310021132310021132310021132310021132310021132310021132
0.0021021021021021021021021021021021021021021021021021021021021021021021
0.0020310331302300203103313023002031033130230020310331302300203103313023
0.0020202020202020202020202020202020202020202020202020202020202020202020
0.0020100201002010020100201002010020100201002010020100201002010020100201
0.0020000000000000000000000000000000000000000000000000000000000000000000
0.0013300133001330013300133001330013300133001330013300133001330013300133
0.0013201320132013201320132013201320132013201320132013201320132013201320
0.0013110013110013110013110013110013110013110013110013110013110013110013
0.0013013013013013013013013013013013013013013013013013013013013013013013
0.0012322303321011030012322303321011030012322303321011030012322303321011
0.0012233022012233022012233022012233022012233022012233022012233022012233
0.0012210012210012210012210012210012210012210012210012210012210012210012
0.0012121212121212121212121212121212121212121212121212121212121212121212
0.0012033213001203321300120332130012033213001203321300120332130012033213
0.0012012012012012012012012012012012012012012012012012012012012012012012
0.0011331001133100113310011331001133100113310011331001133100113310011331
0.0011310113101131011310113101131011310113101131011310113101131011310113
0.0011230011230011230011230011230011230011230011230011230011230011230011
0.0011210023020112100230201121002302011210023020112100230201121002302011
0.0011130212020022321030100111302120200223210301001113021202002232103010
0.0011111111111111111111111111111111111111111111111111111111111111111111
0.0011032113200221302330011032113200221302330011032113200221302330011032
0.0011013223201101322320110132232011013223201101322320110132232011013223

FRACTIONS 1/x IN BASE 5


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17

0.4444444444444444444444444444444444444444444444444444444444444444444444
0.2222222222222222222222222222222222222222222222222222222222222222222222
0.1313131313131313131313131313131313131313131313131313131313131313131313
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0404040404040404040404040404040404040404040404040404040404040404040404
0.0324120324120324120324120324120324120324120324120324120324120324120324
0.0303030303030303030303030303030303030303030303030303030303030303030303
0.0234210234210234210234210234210234210234210234210234210234210234210234
0.0222222222222222222222222222222222222222222222222222222222222222222222
0.0211402114021140211402114021140211402114021140211402114021140211402114
0.0202020202020202020202020202020202020202020202020202020202020202020202
0.0143014301430143014301430143014301430143014301430143014301430143014301
0.0134310134310134310134310134310134310134310134310134310134310134310134
0.0131313131313131313131313131313131313131313131313131313131313131313131
0.0124012401240124012401240124012401240124012401240124012401240124012401
0.0121340243231042012134024323104201213402432310420121340243231042012134

1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0114330114330114330114330114330114330114330114330114330114330114330114
0.0112421410112421410112421410112421410112421410112421410112421410112421
0.0111111111111111111111111111111111111111111111111111111111111111111111
0.0104340104340104340104340104340104340104340104340104340104340104340104
0.0103201032010320103201032010320103201032010320103201032010320103201032
0.0102041332143424031123010204133214342403112301020413321434240311230102
0.0101010101010101010101010101010101010101010101010101010101010101010101
0.0100000000000000000000000000000000000000000000000000000000000000000000
0.0044004400440044004400440044004400440044004400440044004400440044004400
0.0043033224401411220043033224401411220043033224401411220043033224401411
0.0042130042130042130042130042130042130042130042130042130042130042130042
0.0041233440321100412334403211004123344032110041233440321100412334403211
0.0040404040404040404040404040404040404040404040404040404040404040404040
0.0040040040040040040040040040040040040040040040040040040040040040040040
0.0034231200342312003423120034231200342312003423120034231200342312003423
0.0033432203003343220300334322030033432203003343220300334322030033432203
0.0033142344113021003314234411302100331423441130210033142344113021003314
0.0032412032412032412032412032412032412032412032412032412032412032412032
0.0032140032140032140032140032140032140032140032140032140032140032140032
0.0031421220401133424413023224043311020031421220401133424413023224043311
0.0031210430031210430031210430031210430031210430031210430031210430031210
0.0031003100310031003100310031003100310031003100310031003100310031003100
0.0030303030303030303030303030303030303030303030303030303030303030303030
0.0030110220441433422400301102204414334224003011022044143342240030110220
0.0024420024420024420024420024420024420024420024420024420024420024420024
0.0024231412234340431114420213032210104013330024231412234340431114420213
0.0024100241002410024100241002410024100241002410024100241002410024100241
0.0023421023421023421023421023421023421023421023421023421023421023421023
0.0023243141044212013034002324314104421201303400232431410442120130340023
0.0023122104111424140101244213223403330203043432002312210411142414010124
0.0023002300230023002300230023002300230023002300230023002300230023002300
0.0022334143213314042434422110301231130402010022334143213314042434422110
0.0022222222222222222222222222222222222222222222222222222222222222222222

FRACTIONS 1/x IN BASE 6


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22

0.5555555555555555555555555555555555555555555555555555555555555555555555
0.3000000000000000000000000000000000000000000000000000000000000000000000
0.2000000000000000000000000000000000000000000000000000000000000000000000
0.1300000000000000000000000000000000000000000000000000000000000000000000
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0505050505050505050505050505050505050505050505050505050505050505050505
0.0430000000000000000000000000000000000000000000000000000000000000000000
0.0400000000000000000000000000000000000000000000000000000000000000000000
0.0333333333333333333333333333333333333333333333333333333333333333333333
0.0313452421031345242103134524210313452421031345242103134524210313452421
0.0300000000000000000000000000000000000000000000000000000000000000000000
0.0243405312150243405312150243405312150243405312150243405312150243405312
0.0232323232323232323232323232323232323232323232323232323232323232323232
0.0222222222222222222222222222222222222222222222222222222222222222222222
0.0213000000000000000000000000000000000000000000000000000000000000000000
0.0204122453514331020412245351433102041224535143310204122453514331020412
0.0200000000000000000000000000000000000000000000000000000000000000000000
0.0152113250152113250152113250152113250152113250152113250152113250152113
0.0144444444444444444444444444444444444444444444444444444444444444444444
0.0141414141414141414141414141414141414141414141414141414141414141414141
0.0134524210313452421031345242103134524210313452421031345242103134524210

1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0132203044101322030441013220304410132203044101322030441013220304410132
0.0130000000000000000000000000000000000000000000000000000000000000000000
0.0123501235012350123501235012350123501235012350123501235012350123501235
0.0121502434053121502434053121502434053121502434053121502434053121502434
0.0120000000000000000000000000000000000000000000000000000000000000000000
0.0114141414141414141414141414141414141414141414141414141414141414141414
0.0112404544315101124045443151011240454431510112404544315101124045443151
0.0111111111111111111111111111111111111111111111111111111111111111111111
0.0105450105450105450105450105450105450105450105450105450105450105450105
0.0104300000000000000000000000000000000000000000000000000000000000000000
0.0103134524210313452421031345242103134524210313452421031345242103134524
0.0102041224535143310204122453514331020412245351433102041224535143310204
0.0101010101010101010101010101010101010101010101010101010101010101010101
0.0100000000000000000000000000000000000000000000000000000000000000000000
0.0055005500550055005500550055005500550055005500550055005500550055005500
0.0054034423054034423054034423054034423054034423054034423054034423054034
0.0053121502434053121502434053121502434053121502434053121502434053121502
0.0052222222222222222222222222222222222222222222222222222222222222222222
0.0051335412440330234455042201431152253211005133541244033023445504220143
0.0050505050505050505050505050505050505050505050505050505050505050505050
0.0050050050050050050050050050050050050050050050050050050050050050050050
0.0045242103134524210313452421031345242103134524210313452421031345242103
0.0044444444444444444444444444444444444444444444444444444444444444444444
0.0044101322030441013220304410132203044101322030441013220304410132203044
0.0043324030214420131052100433240302144201310521004332403021442013105210
0.0043000000000000000000000000000000000000000000000000000000000000000000
0.0042240551331500422405513315004224055133150042240551331500422405513315
0.0041530415304153041530415304153041530415304153041530415304153041530415

FRACTIONS 1/x IN BASE 7


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27

0.6666666666666666666666666666666666666666666666666666666666666666666666
0.3333333333333333333333333333333333333333333333333333333333333333333333
0.2222222222222222222222222222222222222222222222222222222222222222222222
0.1515151515151515151515151515151515151515151515151515151515151515151515
0.1254125412541254125412541254125412541254125412541254125412541254125412
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0606060606060606060606060606060606060606060606060606060606060606060606
0.0530530530530530530530530530530530530530530530530530530530530530530530
0.0462046204620462046204620462046204620462046204620462046204620462046204
0.0431162355043116235504311623550431162355043116235504311623550431162355
0.0404040404040404040404040404040404040404040404040404040404040404040404
0.0352456314210352456314210352456314210352456314210352456314210352456314
0.0333333333333333333333333333333333333333333333333333333333333333333333
0.0316031603160316031603160316031603160316031603160316031603160316031603
0.0303030303030303030303030303030303030303030303030303030303030303030303
0.0261143464055232026114346405523202611434640552320261143464055232026114
0.0250250250250250250250250250250250250250250250250250250250250250250250
0.0244444444444444444444444444444444444444444444444444444444444444444444
0.0231023102310231023102310231023102310231023102310231023102310231023102
0.0222222222222222222222222222222222222222222222222222222222222222222222
0.0214064526021406452602140645260214064526021406452602140645260214064526
0.0206251134364604155323020625113436460415532302062511343646041553230206
0.0202020202020202020202020202020202020202020202020202020202020202020202
0.0165016501650165016501650165016501650165016501650165016501650165016501
0.0161226505440161226505440161226505440161226505440161226505440161226505
0.0154632410154632410154632410154632410154632410154632410154632410154632

1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0151515151515151515151515151515151515151515151515151515151515151515151
0.0145536014553601455360145536014553601455360145536014553601455360145536
0.0143014301430143014301430143014301430143014301430143014301430143014301
0.0140310621543420140310621543420140310621543420140310621543420140310621
0.0135013501350135013501350135013501350135013501350135013501350135013501
0.0132520564013252056401325205640132520564013252056401325205640132520564
0.0130421565362451013042156536245101304215653624510130421565362451013042
0.0125412541254125412541254125412541254125412541254125412541254125412541
0.0123460123460123460123460123460123460123460123460123460123460123460123
0.0121614630121614630121614630121614630121614630121614630121614630121614
0.0120120120120120120120120120120120120120120120120120120120120120120120
0.0115364326050115364326050115364326050115364326050115364326050115364326
0.0114011401140114011401140114011401140114011401140114011401140114011401
0.0112363262135202250565543034045314644161011236326213520225056554303404
0.0111111111111111111111111111111111111111111111111111111111111111111111
0.0106560106560106560106560106560106560106560106560106560106560106560106
0.0105365613010536561301053656130105365613010536561301053656130105365613
0.0104232645520104232645520104232645520104232645520104232645520104232645
0.0103124052165635426145010312405216563542614501031240521656354261450103
0.0102041122452350306153401020411224523503061534010204112245235030615340
0.0101010101010101010101010101010101010101010101010101010101010101010101
0.0100000000000000000000000000000000000000000000000000000000000000000000
0.0066006600660066006600660066006600660066006600660066006600660066006600

FRACTIONS 1/x IN BASE 8


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32

0.7777777777777777777777777777777777777777777777777777777777777777777777
0.4000000000000000000000000000000000000000000000000000000000000000000000
0.2525252525252525252525252525252525252525252525252525252525252525252525
0.2000000000000000000000000000000000000000000000000000000000000000000000
0.1463146314631463146314631463146314631463146314631463146314631463146314
0.1252525252525252525252525252525252525252525252525252525252525252525252
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0707070707070707070707070707070707070707070707070707070707070707070707
0.0631463146314631463146314631463146314631463146314631463146314631463146
0.0564272135056427213505642721350564272135056427213505642721350564272135
0.0525252525252525252525252525252525252525252525252525252525252525252525
0.0473047304730473047304730473047304730473047304730473047304730473047304
0.0444444444444444444444444444444444444444444444444444444444444444444444
0.0421042104210421042104210421042104210421042104210421042104210421042104
0.0400000000000000000000000000000000000000000000000000000000000000000000
0.0360741703607417036074170360741703607417036074170360741703607417036074
0.0343434343434343434343434343434343434343434343434343434343434343434343
0.0327450327450327450327450327450327450327450327450327450327450327450327
0.0314631463146314631463146314631463146314631463146314631463146314631463
0.0303030303030303030303030303030303030303030303030303030303030303030303
0.0272135056427213505642721350564272135056427213505642721350564272135056
0.0262054413102620544131026205441310262054413102620544131026205441310262
0.0252525252525252525252525252525252525252525252525252525252525252525252
0.0243656050753412172702436560507534121727024365605075341217270243656050
0.0235423542354235423542354235423542354235423542354235423542354235423542
0.0227550227550227550227550227550227550227550227550227550227550227550227
0.0222222222222222222222222222222222222222222222222222222222222222222222
0.0215173454106475626043236713021517345410647562604323671302151734541064
0.0210421042104210421042104210421042104210421042104210421042104210421042
0.0204102041020410204102041020410204102041020410204102041020410204102041
0.0200000000000000000000000000000000000000000000000000000000000000000000

1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0174076037017407603701740760370174076037017407603701740760370174076037
0.0170360741703607417036074170360741703607417036074170360741703607417036
0.0165016501650165016501650165016501650165016501650165016501650165016501
0.0161616161616161616161616161616161616161616161616161616161616161616161
0.0156547621230156547621230156547621230156547621230156547621230156547621
0.0153624153624153624153624153624153624153624153624153624153624153624153
0.0151515151515151515151515151515151515151515151515151515151515151515151
0.0146314631463146314631463146314631463146314631463146314631463146314631
0.0143716030763406174701437160307634061747014371603076340617470143716030
0.0141414141414141414141414141414141414141414141414141414141414141414141
0.0137202764057501372027640575013720276405750137202764057501372027640575
0.0135056427213505642721350564272135056427213505642721350564272135056427
0.0133013301330133013301330133013301330133013301330133013301330133013301
0.0131026205441310262054413102620544131026205441310262054413102620544131
0.0127114202562304053446101271142025623040534461012711420256230405344610
0.0125252525252525252525252525252525252525252525252525252525252525252525
0.0123457012345701234570123457012345701234570123457012345701234570123457
0.0121727024365605075341217270243656050753412172702436560507534121727024

FRACTIONS 1/x IN BASE 9


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37

0.8888888888888888888888888888888888888888888888888888888888888888888888
0.4444444444444444444444444444444444444444444444444444444444444444444444
0.3000000000000000000000000000000000000000000000000000000000000000000000
0.2222222222222222222222222222222222222222222222222222222222222222222222
0.1717171717171717171717171717171717171717171717171717171717171717171717
0.1444444444444444444444444444444444444444444444444444444444444444444444
0.1251251251251251251251251251251251251251251251251251251251251251251251
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0808080808080808080808080808080808080808080808080808080808080808080808
0.0732407324073240732407324073240732407324073240732407324073240732407324
0.0666666666666666666666666666666666666666666666666666666666666666666666
0.0620620620620620620620620620620620620620620620620620620620620620620620
0.0570570570570570570570570570570570570570570570570570570570570570570570
0.0535353535353535353535353535353535353535353535353535353535353535353535
0.0505050505050505050505050505050505050505050505050505050505050505050505
0.0467842104678421046784210467842104678421046784210467842104678421046784
0.0444444444444444444444444444444444444444444444444444444444444444444444
0.0423275180423275180423275180423275180423275180423275180423275180423275
0.0404040404040404040404040404040404040404040404040404040404040404040404
0.0376376376376376376376376376376376376376376376376376376376376376376376
0.0361203612036120361203612036120361203612036120361203612036120361203612
0.0346231150703462311507034623115070346231150703462311507034623115070346
0.0333333333333333333333333333333333333333333333333333333333333333333333
0.0321385675032138567503213856750321385675032138567503213856750321385675
0.0310310310310310310310310310310310310310310310310310310310310310310310
0.0300000000000000000000000000000000000000000000000000000000000000000000
0.0280280280280280280280280280280280280280280280280280280280280280280280
0.0271214861767402712148617674027121486176740271214861767402712148617674
0.0262626262626262626262626262626262626262626262626262626262626262626262
0.0254572281140520254572281140520254572281140520254572281140520254572281
0.0247024702470247024702470247024702470247024702470247024702470247024702
0.0240732407324073240732407324073240732407324073240732407324073240732407
0.0233865502338655023386550233865502338655023386550233865502338655023386
0.0227410227410227410227410227410227410227410227410227410227410227410227
0.0222222222222222222222222222222222222222222222222222222222222222222222
0.0216282380216282380216282380216282380216282380216282380216282380216282

1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0211582540211582540211582540211582540211582540211582540211582540211582
0.0206206206206206206206206206206206206206206206206206206206206206206206
0.0202020202020202020202020202020202020202020202020202020202020202020202
0.0187018701870187018701870187018701870187018701870187018701870187018701
0.0183183183183183183183183183183183183183183183183183183183183183183183
0.0178520747283312264350178520747283312264350178520747283312264350178520
0.0175101751017510175101751017510175101751017510175101751017510175101751
0.0171717171717171717171717171717171717171717171717171717171717171717171
0.0167560524801675605248016756052480167560524801675605248016756052480167
0.0164532261130514706803401645322611305147068034016453226113051470680340
0.0161616161616161616161616161616161616161616161616161616161616161616161
0.0157806545284032671420157806545284032671420157806545284032671420157806
0.0155187337015518733701551873370155187337015518733701551873370155187337

FRACTIONS 1/x IN BASE 10


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42

0.9999999999999999999999999999999999999999999999999999999999999999999999
0.5000000000000000000000000000000000000000000000000000000000000000000000
0.3333333333333333333333333333333333333333333333333333333333333333333333
0.2500000000000000000000000000000000000000000000000000000000000000000000
0.2000000000000000000000000000000000000000000000000000000000000000000000
0.1666666666666666666666666666666666666666666666666666666666666666666666
0.1428571428571428571428571428571428571428571428571428571428571428571428
0.1250000000000000000000000000000000000000000000000000000000000000000000
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0909090909090909090909090909090909090909090909090909090909090909090909
0.0833333333333333333333333333333333333333333333333333333333333333333333
0.0769230769230769230769230769230769230769230769230769230769230769230769
0.0714285714285714285714285714285714285714285714285714285714285714285714
0.0666666666666666666666666666666666666666666666666666666666666666666666
0.0625000000000000000000000000000000000000000000000000000000000000000000
0.0588235294117647058823529411764705882352941176470588235294117647058823
0.0555555555555555555555555555555555555555555555555555555555555555555555
0.0526315789473684210526315789473684210526315789473684210526315789473684
0.0500000000000000000000000000000000000000000000000000000000000000000000
0.0476190476190476190476190476190476190476190476190476190476190476190476
0.0454545454545454545454545454545454545454545454545454545454545454545454
0.0434782608695652173913043478260869565217391304347826086956521739130434
0.0416666666666666666666666666666666666666666666666666666666666666666666
0.0400000000000000000000000000000000000000000000000000000000000000000000
0.0384615384615384615384615384615384615384615384615384615384615384615384
0.0370370370370370370370370370370370370370370370370370370370370370370370
0.0357142857142857142857142857142857142857142857142857142857142857142857
0.0344827586206896551724137931034482758620686551724137931034482758620689
0.0333333333333333333333333333333333333333333333333333333333333333333333
0.0322580645161290322580645161290322580645161290322580645161290322580645
0.0312500000000000000000000000000000000000000000000000000000000000000000
0.0303030303030303030303030303030303030303030303030303030303030303030303
0.0294117647058823529411764705882352941176470588235294117647058823529411
0.0285714285714285714285714285714285714285714285714285714285714285714285
0.0277777777777777777777777777777777777777777777777777777777777777777777
0.0270270270270270270270270270270270270270270270270270270270270270270270
0.0263157894736842105263157894736842105263157894736842105263157894736842
0.0256410256410256410256410256410256410256410256410256410256410256410256
0.0250000000000000000000000000000000000000000000000000000000000000000000
0.0243902439024390243902439024390243902439024390243902439024390243902439
0.0238095238095238095238095238095238095238095238095238095238095238095238

1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.0232558139534883720930232558139534883720930232558139534883720930232558
0.0227272727272727272727272727272727272727272727272727272727272727272727
0.0222222222222222222222222222222222222222222222222222222222222222222222
0.0217391304347826086956521739130434782608695652173913043478260869565217
0.0212765957446808510638297872340425531914893617021276595744680851063829
0.0208333333333333333333333333333333333333333333333333333333333333333333
0.0204081632653061224489795918367346938775510204081632653061224489795918
0.0200000000000000000000000000000000000000000000000000000000000000000000

FRACTIONS 1/x IN BASE 11


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47

0.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
0.5555555555555555555555555555555555555555555555555555555555555555555555
0.3737373737373737373737373737373737373737373737373737373737373737373737
0.2828282828282828282828282828282828282828282828282828282828282828282828
0.2222222222222222222222222222222222222222222222222222222222222222222222
0.1919191919191919191919191919191919191919191919191919191919191919191919
0.1663163163163163163163163613613613163163163163163163163163613613613163
0.1414141414141414141414141414141414141414141414141414141414141414141414
0.1249861249861249861249861249861249861249861249861249861249861249861249
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A
0.093425A17685093425A17685093425A17685093425A17685093425A17685093425A176
0.0870870870870870870870870870870870870870870870870870870870870870870870
0.0808080808080808080808080808080808080808080808080808080808080808080808
0.0762076207620762076207620762076207620762076207620762076207620762076207
0.07132651A397845907132651A397845907132651A397845907132651A3978459071326
0.067A43067A43067A43067A43067A43067A43067A43067A43067A43067A43067A43067A
0.0640640640640640640640640640640640640640640640640640640640640640640640
0.0606060606060606060606060606060606060606060606060606060606060606060606
0.0584210584210584210584210584210584210584210584210584210584210584210584
0.0555555555555555555555555555555555555555555555555555555555555555555555
0.05296243390A581486771A05296243390A581486771A05296243390A581486771A0529
0.0505050505050505050505050505050505050505050505050505050505050505050505
0.0492704927049270492704927049270492704927049270492704927049270492704927
0.047212A63898047212A63898047212A63898047212A63898047212A63898047212A638
0.0453294081065781610204532940810657816102045329408106578161020453294081
0.0435990435990435990435990435990435990435990435990435990435990435990435
0.0419953460838710691157641027230419953460838710691157641027230419953460
0.0404040404040404040404040404040404040404040404040404040404040404040404
0.039A32146818574A71078964292536039A32146818574A71078964292536039A321468
0.0386593103865931038659310386593103865931038659310386593103865931038659
0.0373737373737373737373737373737373737373737373737373737373737373737373
0.0361688010749422100361688010749422100361688010749422100361688010749422
0.0350350350350350350350350350350350350350350350350350350350350350350350
0.033A77033A77033A77033A77033A77033A77033A77033A77033A77033A77033A77033A
0.0321078032107803210780321078032107803210780321078032107803210780321078
0.0320320320320320320320320320320320320320320320320320320320320320320320
0.0311457062290311457062290311457062290311457062290311457062290311457062
0.0303030303030303030303030303030303030303030303030303030303030303030303
0.02A51089432461972756A8059A2167864913835402A51089432461972756A8059A2167
0.0297660297660297660297660297660297660297660297660297660297660297660297
0.028A541028A541028A541028A541028A541028A541028A541028A541028A541028A541
0.0282828282828282828282828282828282828282828282828282828282828282828282
0.02763A02763A02763A02763A02763A02763A02763A02763A02763A02763A02763A0276
0.026A3121745A8407989365026A3121745A8407989365026A3121745A8407989365026A
0.026356872899144A077A593A847542382119660A330517026356872899144A077A593A

1/48
1/49
1/50

0.0258025802580258025802580258025802580258025802580258025802580258025802
0.0251883404103656809972025188340410365680997202518834041036568099720251
0.0246902469024690246902469024690246902469024690246902469024690246902469

FRACTIONS 1/x IN BASE 12


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
0.6000000000000000000000000000000000000000000000000000000000000000000000
0.4000000000000000000000000000000000000000000000000000000000000000000000
0.3000000000000000000000000000000000000000000000000000000000000000000000
0.2497249724972497249724972497249724972497249724972497249724972497249724
0.2000000000000000000000000000000000000000000000000000000000000000000000
0.186A35186A35186A35186A35186A35186A35186A35186A35186A35186A35186A35186A
0.1600000000000000000000000000000000000000000000000000000000000000000000
0.1400000000000000000000000000000000000000000000000000000000000000000000
0.1249724972497249724972497249724972497249724972497249724972497249724972
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B
0.0103518601035186010351860103518601035186010351860103518601035186010351
0.0972497249724972497249724972497249724972497249724972497249724972497249
0.0900000000000000000000000000000000000000000000000000000000000000000000
0.08579214B36429A708579214B36429A708579214B36429A708579214B36429A7085792
0.0800000000000000000000000000000000000000000000000000000000000000000000
0.076B45076B45076B45076B45076B45076B45076B45076B45076B45076B45076B45076B
0.0724972497249724972497249724972497249724972497249724972497249724972497
0.06A35186A35186A35186A35186A35186A35186A35186A35186A35186A35186A35186A3
0.0666666666666666666666666666666666666666666666666666666666666666666666
0.0631694842106316948421063169484210631694842106316948421063169484210631
0.0600000000000000000000000000000000000000000000000000000000000000000000
0.05915343A0B621068781B05915343A0B621068781B05915343A0B621068781B0591534
0.0565656565656565656565656565656565656565656565656565656565656565656565
0.0540000000000000000000000000000000000000000000000000000000000000000000
0.05186A35186A35186A35186A35186A35186A35186A35186A35186A35186A35186A3518
0.04B704B704B704B704B704B704B704B704B704B704B704B704B704B704B704B704B704
0.0497249724972497249724972497249724972497249724972497249724972497249724
0.0478AA093598166B74311B28623A550478AA093598166B74311B28623A550478AA0935
0.0460000000000000000000000000000000000000000000000000000000000000000000
0.0444444444444444444444444444444444444444444444444444444444444444444444
0.0429A708579214B36429A708579214B36429A708579214B36429A708579214B36429A7
0.0414559B39310414559B39310414559B39310414559B39310414559B39310414559B39
0.0400000000000000000000000000000000000000000000000000000000000000000000
0.03A85232B03A85232B03A85232B03A85232B03A85232B03A85232B03A85232B03A8523
0.0395826395826395826395826395826395826395826395826395826395826395826395
0.0383838383838383838383838383838383838383838383838383838383838383838383
0.0372497249724972497249724972497249724972497249724972497249724972497249
0.036190A653277397A9B4B85A2B15689448241207036190A653277397A9B4B85A2B1568
0.0351861035186103518610351861035186103518610351861035186103518610351861
0.0342295A3AA730A068456B879926181148B1B537650342295A3AA730A068456B879926
0.0333333333333333333333333333333333333333333333333333333333333333333333
0.0324972497249724972497249724972497249724972497249724972497249724972497
0.0316948421063169484210631694842106316948421063169484210631694842106316
0.0309236A882061647154410309236A882061647154410309236A882061647154410309
0.0300000000000000000000000000000000000000000000000000000000000000000000
0.02B322547A05A644A9380B9086741B615771283B02B322547A05A644A9380B9086741B
0.02A68781B05915343A0B62A68781B05915343A0B62A68781B05915343A0B62A68781B0

FRACTIONS 1/x IN BASE 13


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
0.6666666666666666666666666666666666666666666666666666666666666666666666
0.4444444444444444444444444444444444444444444444444444444444444444444444
0.3333333333333333333333333333333333333333333333333333333333333333333333
0.27A527A527A527A527A527A527A527A527A527A527A527A527A527A527A527A527A527
0.2222222222222222222222222222222222222222222222222222222222222222222222
0.1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B
0.1818181818181818181818181818181818181818181818181818181818181818181818
0.15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A15A1
0.13B913B913B913B913B913B913B913B913B913B913B913B913B913B913B913B913B913
0.12495BA83712495BA83712495BA83712495BA83712495BA83712495BA83712495BA837
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B
0.0B360B360B360B360B360B360B360B360B360B360B360B360B360B360B360B360B360B
0.0A740A740A740A740A740A740A740A740A740A740A740A740A740A740A740A740A740A
0.09C309C309C309C309C309C309C309C309C309C309C309C309C309C309C309C309C309
0.0950950950950950950950950950950950950950950950950950950950950950950950
0.08B82976AC414A356208B82976AC414A356208B82976AC414A356208B82976AC414A35
0.0851108511085110851108511085110851108511085110851108511085110851108511
0.0808080808080808080808080808080808080808080808080808080808080808080808
0.078B2C541A078B2C541A078B2C541A078B2C541A078B2C541A078B2C541A078B2C541A
0.0746102351190746102351190746102351190746102351190746102351190746102351
0.0707070707070707070707070707070707070707070707070707070707070707070707
0.069B5948ABC631738421069B5948ABC631738421069B5948ABC631738421069B5948AB
0.0666666666666666666666666666666666666666666666666666666666666666666666
0.0634A791C0634A791C0634A791C0634A791C0634A791C0634A791C0634A791C0634A79
0.0606060606060606060606060606060606060606060606060606060606060606060606
0.05A9B28C7231A405A9B28C7231A405A9B28C7231A405A9B28C7231A405A9B28C7231A4
0.0583058305830583058305830583058305830583058305830583058305830583058305
0.055B42692C21347C7718A631A0AB985055B42692C21347C7718A631A0AB985055B4269
0.05386BA205386BA205386BA205386BA205386BA205386BA205386BA205386BA205386B
0.051763C29B051763C29B051763C29B051763C29B051763C29B051763C29B051763C29B
0.04C804C804C804C804C804C804C804C804C804C804C804C804C804C804C804C804C804
0.04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04AA04
0.0490490490490490490490490490490490490490490490490490490490490490490490
0.0474BC3B3215368A25C85810919AB79642A70474BC3B3215368A25C85810919AB79642
0.045A7B39BC87251931045A7B39BC87251931045A7B39BC87251931045A7B39BC872519
0.0444444444444444444444444444444444444444444444444444444444444444444444
0.042C042C042C042C042C042C042C042C042C042C042C042C042C042C042C042C042C04
0.04177C08322B13645926C8B550C49AA1B96873A604177C08322B13645926C8B550C49A
0.0404040404040404040404040404040404040404040404040404040404040404040404
0.03C1294AB646C51A7734303C1294AB646C51A7734303C1294AB646C51A7734303C1294
0.03AC16287503AC16287503AC16287503AC16287503AC16287503AC16287503AC162875
0.039A8C564812039A8C564812039A8C564812039A8C564812039A8C564812039A8C5648
0.038B78270B038B78270B038B78270B038B78270B038B78270B038B78270B038B78270B
0.03798B0AA30726491876114C95341C229C5A683B456BB803798B0AA30726491876114C
0.036A036A036A036A036A036A036A036A036A036A036A036A036A036A036A036A036A03
0.035AB53C972179035AB53C972179035AB53C972179035AB53C972179035AB53C972179
0.034C2B2455C980A1A877034C2B2455C980A1A877034C2B2455C980A1A877034C2B2455

FRACTIONS 1/x IN BASE 14


1/1
1/2
1/3
1/4

0.DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
0.7777777777777777777777777777777777777777777777777777777777777777777777
0.4949494949494949494949494949494949494949494949494949494949494949494949
0.3737373737373737373737373737373737373737373737373737373737373737373737

1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B
0.2494949494949494949494949494949494949494949494949494949494949494949494
0.2000000000000000000000000000000000000000000000000000000000000000000000
0.1A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71A71
0.17AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC
0.1585858585858585858585858585858585858585858585858585858585858585858585
0.13B6513B6513B6513B6513B6513B6513B6513B6513B6513B6513B6513B6513B6513B65
0.1249494949494949494949494949494949494949494949494949494949494949494949
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D
0.0C37000000000000000000000000000000000000000000000000000000000000000000
0.0B75A91C4D2683410B75A91C4D2683410B75A91C4D2683410B75A91C4D2683410B75A9
0.0AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6
0.0A45C7522D398168BB0A45C7522D398168BB0A45C7522D398168BB0A45C7522D398168
0.09B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2
0.0949494949494949494949494949494949494949494949494949494949494949494949
0.08CA278CA278CA278CA278CA278CA278CA278CA278CA278CA278CA278CA278CA278CA2
0.0874391B7CAD569A4C26130874391B7CAD569A4C26130874391B7CAD569A4C26130874
0.0824949494949494949494949494949494949494949494949494949494949494949494
0.07BA8D623507BA8D623507BA8D623507BA8D623507BA8D623507BA8D623507BA8D6235
0.0777777777777777777777777777777777777777777777777777777777777777777777
0.0738B59BCD6A5284210738B59BCD6A5284210738B59BCD6A5284210738B59BCD6A5284
0.0700000000000000000000000000000000000000000000000000000000000000000000
0.06A89925B163C0D73544B82C7A1D06A89925B163C0D73544B82C7A1D06A89925B163C0
0.0676767676767676767676767676767676767676767676767676767676767676767676
0.0647323881B40C90647323881B40C90647323881B40C90647323881B40C90647323881
0.061A700000000000000000000000000000000000000000000000000000000000000000
0.05D219A86B05D219A86B05D219A86B05D219A86B05D219A86B05D219A86B05D219A86B
0.05A9C4D2683410B75A9C4D2683410B75A9C4D2683410B75A9C4D2683410B75A9C4D268
0.0585858585858585858585858585858585858585858585858585858585858585858585
0.056317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC6317AC63
0.05423AD89BA305423AD89BA305423AD89BA305423AD89BA305423AD89BA305423AD89B
0.0522D398168BB0A45C7522D398168BB0A45C7522D398168BB0A45C7522D398168BB0A4
0.0505050505050505050505050505050505050505050505050505050505050505050505
0.04C8585858585858585858585858585858585858585858585858585858585858585858
0.04ACD93104ACD93104ACD93104ACD93104ACD93104ACD93104ACD93104ACD93104ACD9
0.0494949494949494949494949494949494949494949494949494949494949494949494
0.047B576BA143381D4C52D047B576BA143381D4C52D047B576BA143381D4C52D047B576
0.046513B6513B6513B6513B6513B6513B6513B6513B6513B6513B6513B6513B6513B651
0.044D99044D99044D99044D99044D99044D99044D99044D99044D99044D99044D99044D
0.04391B7CAD569A4C26130874391B7CAD569A4C26130874391B7CAD569A4C2613087439
0.042550C721297638084AA1B042550C721297638084AA1B042550C721297638084AA1B0
0.0412494949494949494949494949494949494949494949494949494949494949494949
0.0400000000000000000000000000000000000000000000000000000000000000000000
0.03CC46A11973CC46A11973CC46A11973CC46A11973CC46A11973CC46A11973CC46A119

FRACTIONS 1/x IN BASE 15


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10

0.EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
0.7777777777777777777777777777777777777777777777777777777777777777777777
0.5000000000000000000000000000000000000000000000000000000000000000000000
0.3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
0.3000000000000000000000000000000000000000000000000000000000000000000000
0.2777777777777777777777777777777777777777777777777777777777777777777777
0.2222222222222222222222222222222222222222222222222222222222222222222222
0.1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D
0.B000000000000000000000000000000000000000000000000000000000000000000000
0.1777777777777777777777777777777777777777777777777777777777777777777777

1/11
1/12
1/13
1/14
1/15
1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4
0.13B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3
0.124936DCA5B8124936DCA5B8124936DCA5B8124936DCA5B8124936DCA5B8124936DCA5
0.1111111111111111111111111111111111111111111111111111111111111111111111
0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E
0.0D37E1B70D37E1B70D37E1B70D37E1B70D37E1B70D37E1B70D37E1B70D37E1B70D37E1
0.0C77777777777777777777777777777777777777777777777777777777777777777777
0.0BC9718A3E3257D64B0BC9718A3E3257D64B0BC9718A3E3257D64B0BC9718A3E3257D6
0.0B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
0.0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
0.0A3620A3620A3620A3620A3620A3620A3620A3620A3620A3620A3620A3620A3620A362
0.09BB1487291E533DA67C5D09BB1487291E533DA67C5D09BB1487291E533DA67C5D09BB
0.0959595959595959595959595959595959595959595959595959595959595959595959
0.0900000000000000000000000000000000000000000000000000000000000000000000
0.089C1AE652D4089C1AE652D4089C1AE652D4089C1AE652D4089C1AE652D4089C1AE652
0.0850000000000000000000000000000000000000000000000000000000000000000000
0.0808080808080808080808080808080808080808080808080808080808080808080808
0.07B5A528BD6ACDE73949C631842107B5A528BD6ACDE73949C631842107B5A528BD6ACD
0.0777777777777777777777777777777777777777777777777777777777777777777777
0.073D0E7B1E073D0E7B1E073D0E7B1E073D0E7B1E073D0E7B1E073D0E7B1E073D0E7B1E
0.0707070707070707070707070707070707070707070707070707070707070707070707
0.06C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C4156C41
0.0693E85B0693E85B0693E85B0693E85B0693E85B0693E85B0693E85B0693E85B0693E8
0.0666666666666666666666666666666666666666666666666666666666666666666666
0.063B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
0.061339AE2C87A8194CE8DBB540C26746D5A2061339AE2C87A8194CE8DBB540C26746D5
0.05DC38451E912B6A9D05DC38451E912B6A9D05DC38451E912B6A9D05DC38451E912B6A
0.05B8124936DCA5B8124936DCA5B8124936DCA5B8124936DCA5B8124936DCA5B8124936
0.0595959595959595959595959595959595959595959595959595959595959595959595
0.0574B51C68BA922DD80AE97A39D28345CC116E40574B51C68BA922DD80AE97A39D2834
0.0555555555555555555555555555555555555555555555555555555555555555555555
0.05374D3C858AC3215DE4805374D3C858AC3215DE4805374D3C858AC3215DE4805374D3
0.051A87C931051A87C931051A87C931051A87C931051A87C931051A87C931051A87C931
0.0500000000000000000000000000000000000000000000000000000000000000000000
0.04D582438C0EA16CAB62E04D582438C0EA16CAB62E04D582438C0EA16CAB62E04D5824
0.04BC1DABC7518E09893C6A7EA32D142379D60E565B284704BC1DABC7518E09893C6A7E
0.04A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4
0.048D26B048D26B048D26B048D26B048D26B048D26B048D26B048D26B048D26B048D26B
0.0477777777777777777777777777777777777777777777777777777777777777777777

FRACTIONS 1/x IN BASE 16


1/1
1/2
1/3
1/4
1/5
1/6
1/7
1/8
1/9
1/10
1/11
1/12
1/13
1/14
1/15

0.FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
0.8000000000000000000000000000000000000000000000000000000000000000000000
0.5555555555555555555555555555555555555555555555555555555555555555555555
0.4000000000000000000000000000000000000000000000000000000000000000000000
0.3333333333333333333333333333333333333333333333333333333333333333333333
0.2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
0.2492492492492492492492492492492492492492492492492492492492492492492492
0.2000000000000000000000000000000000000000000000000000000000000000000000
0.1C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71
0.1999999999999999999999999999999999999999999999999999999999999999999999
0.1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D
0.1555555555555555555555555555555555555555555555555555555555555555555555
0.D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D11D111
0.1249249249249249249249249249249249249249249249249249249249249249249249
0.1111111111111111111111111111111111111111111111111111111111111111111111

1/16
1/17
1/18
1/19
1/20
1/21
1/22
1/23
1/24
1/25
1/26
1/27
1/28
1/29
1/30
1/31
1/32
1/33
1/34
1/35
1/36
1/37
1/38
1/39
1/40
1/41
1/42
1/43
1/44
1/45
1/46
1/47
1/48
1/49
1/50

0.1000000000000000000000000000000000000000000000000000000000000000000000
0.0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F
0.0E380E380E380E380E380E380E380E380E380E380E380E380E380E380E380E380E380E
0.0D79435E50D79435E50D79435E50D79435E50D79435E50D79435E50D79435E50D79435
0.0CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
0.0C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30C30
0.0BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E8BA2E
0.0B21642C8590B21642C8590B21642C8590B21642C8590B21642C8590B21642C8590B21
0.0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
0.0A3D70A3D70A3D70A3D70A3D70A3D70A3D70A3D70A3D70A3D70A3D70A3D70A3D70A3D7
0.09D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D89D8
0.097B425ED097B425ED097B425ED097B425ED097B425ED097B425ED097B425ED097B425
0.0924924924924924924924924924924924924924924924924924924924924924924924
0.08D3DCB08D3DCB08D3DCB08D3DCB08D3DCB08D3DCB08D3DCB08D3DCB08D3DCB08D3DCB
0.0888888888888888888888888888888888888888888888888888888888888888888888
0.0842108421084210842108421084210842108421084210842108421084210842108421
0.0800000000000000000000000000000000000000000000000000000000000000000000
0.07C1F07C1F07C1F07C1F07C1F07C1F07C1F07C1F07C1F07C1F07C1F07C1F07C1F07C1F
0.0787878787878787878787878787878787878787878787878787878787878787878787
0.0750750750750750750750750750750750750750750750750750750750750750750750
0.071C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C71C
0.06EB3E45306EB3E45306EB3E45306EB3E45306EB3E45306EB3E45306EB3E45306EB3E4
0.06BCA1AF286BCA1AF286BCA1AF286BCA1AF286BCA1AF286BCA1AF286BCA1AF286BCA1A
0.0690690690690690690690690690690690690690690690690690690690690690690690
0.0666666666666666666666666666666666666666666666666666666666666666666666
0.063E7063E7063E7063E7063E7063E7063E7063E7063E7063E7063E7063E7063E7063E7
0.0618618618618618618618618618618618618618618618618618618618618618618618
0.05F417D05F417D05F417D05F417D05F417D05F417D05F417D05F417D05F417D05F417D
0.05D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D1745D17
0.05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B05B0
0.0590B21642C8590B21642C8590B21642C8590B21642C8590B21642C8590B21642C8590
0.0572620AE4C415C9882B9310572620AE4C415C9882B9310572620AE4C415C9882B9310
0.0555555555555555555555555555555555555555555555555555555555555555555555
0.05397829CBC14E5E0A72F05397829CBC14E5E0A72F05397829CBC14E5E0A72F0539782
0.051EB851EB851EB851EB851EB851EB851EB851EB851EB851EB851EB851EB851EB851EB

_____________________________________________________________________
Investigating The Iterative Formula:
x = kx(1 - x)
by Adi Cox 11/8/14
_____________________________________________________________________
where k = 4 and the starting value of x = 0.2
we get chaotic fractions:
x0 =
=
=
=

(4/5)(4/5)
16/25
(2^4)/(5^2)
0.64

x1 =
=
=
=
=

(64/25)(9/25)
576/625
(2^6*3^2)/(5^4)
((2^6)*3^2)/(5^4)
0.9216

x2 =
=
=
=
=

(2304/625)(49/625)
112896/390625
(2^8*3^2*7^2)/(5^8)
((2^8)*(3*7)^2)/(5^8)
0.28901376

x3 =
=
=
=
=

(451584/390625)(277729/390625)
125417972736/152587890625
(2^10*3^2*7^2*17^2*31^2)/(5^16)
((2^10)*(3*7*17*31)^2)/(5^16)
0.8219392261226496

x4 =
=
=
=
=

(501671890944/152587890625)(27169917889/152587890625)
13630384084167842697216/23283064365386962890625
(2^12*3^2*7^2*17^2*31^2*191^2*863^2)/(5^32)
((2^12)*(3*7*17*31*191*863)^2)/(5^32)
0.58542053873419795759415150247936

xn = [2^(2+2n)*MnValuesSquared]/[5^(2^n)]
How do we find the M values?
nth M value
nth prime
primes
M values

{1,
{2,
{3,
{3,

2,
4,
7,
7,

Below are the list of M values


M0 ---> 0
M1 ---> 3
M2 ---> 7
M3 ---> 527
M4 ---> 164833

3,
7,11,
17*31,
527,

4
43,150
191*863
164833

}
}
}
}

M5 ---> ?
_____________________________________________________________________
The chaotic fraction for x5
xn = [2^(2+2n)*MnValuesSquared]/[5^(2^n)]
x5 =
=
=
=

[2^(2+2*6)*(*M1*M2*M3*M4*M5)^2]/[5^(2^6)]
[2^(2+2*6)*(3*7*527*164833*M5)^2]/[5^(2^6)]
[73786976294838206464*(1824206811*M5)^2]/[5^64]
0.970813326249439

M5 = {([0.970813326249439*5^(2^n)]/[2^(2+2*6)])^(1/2)}/{M1*M2*M3*M4}
_____________________________________________________________________
The html file below gives the output for the first 1000 values for
the iterative formula x = kx(1 - x)
where k = 4 and the starting value of x = 0.2
For some reason the answers are slightly wrong. The first answer
should be 0.6400000000000000 but we get:
1 x = 0.6400000000000001
_____________________________________________________________________
<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Adi Cox Mathematics</title>
</head>
<body>
<script type="text/javascript" language="javascript">
document.write("<h3>x = kx(1 - x) <h3>")
u=1;
k=4;
x=.2;
v=1000;
document.write("<br />The starting value of x = ",x, "<br />k = "
,k,"<br /><br />");
for (b = u; b <= v; b++)
{
x=k*x*(1-x)
document.write(b," x = ", x,"<br />");
}
</script>
</body>
</html>
_____________________________________________________________________
x = kx(1 - x)

The starting value of x = 0.2


k = 4
1 x = 0.6400000000000001
2 x = 0.9215999999999999
3 x = 0.28901376000000045
4 x = 0.8219392261226504
5 x = 0.585420538734196
6 x = 0.970813326249439
7 x = 0.11333924730375745
8 x = 0.40197384929750063
9 x = 0.9615634951138035
10 x = 0.14783655991331973
11 x = 0.5039236458652606
12 x = 0.9999384200124961
13 x = 0.00024630478163611714
14 x = 0.0009849764623626413
15 x = 0.003936025134924932
16 x = 0.015682131364248682
17 x = 0.06174480848049252
18 x = 0.23172954842479926
19 x = 0.7121238592465515
20 x = 0.8200138733533968
21 x = 0.5903644834454244
22 x = 0.9673370405265665
23 x = 0.12638436220748117
24 x = 0.44164542078755753
25 x = 0.9863789723397551
26 x = 0.05374198106289484
27 x = 0.20341512213732119
28 x = 0.6481496408927195
29 x = 0.912206735613433
30 x = 0.3203424284596693
31 x = 0.8708926279529239
32 x = 0.44975463412069594
33 x = 0.9899016128306195
34 x = 0.03998563898383115
35 x = 0.1535471506355435
36 x = 0.5198816926689969
37 x = 0.9984188731864623
38 x = 0.00631450740614895
39 x = 0.02509853760946656
40 x = 0.09787440407733101
41 x = 0.35318002041535335
42 x = 0.9137755743790558
43 x = 0.31515909618912996
44 x = 0.8633353611135227
45 x = 0.4719496614580242
46 x = 0.9968527140307222
47 x = 0.012549522241221646
48 x = 0.049568126930954914
49 x = 0.18844451089404662
50 x = 0.6117327088318006
51 x = 0.9500632071084323
52 x = 0.18977243842908956
53 x = 0.6150354401670679
54 x = 0.9470673900222758
55 x = 0.20052299511468133
56 x = 0.6412540941796753
57 x = 0.9201891235099177

58 x = 0.29376440193586867
59 x = 0.8298675123645202
60 x = 0.5647496971457725
61 x = 0.983229906878123
62 x = 0.06595542839424248
63 x = 0.24642123943829775
64 x = 0.7427912487679635
65 x = 0.7642096380867713
66 x = 0.7207730685682292
67 x = 0.8050370087798718
68 x = 0.6278096930985135
69 x = 0.9346587294002552
70 x = 0.24428715582462296
71 x = 0.7384437652949574
72 x = 0.7725782831678532
73 x = 0.7028043181810627
74 x = 0.8354816341084571
75 x = 0.5498082927036773
76 x = 0.9900765359117792
77 x = 0.0392999557948422
78 x = 0.15102187707746256
79 x = 0.5128570788858494
80 x = 0.9993387820900922
81 x = 0.0026431228031336984
82 x = 0.010544546819925012
83 x = 0.041733437409149685
84 x = 0.15996703044466506
85 x = 0.5375103184615226
86 x = 0.9943719040356607
87 x = 0.02238568200062207
88 x = 0.08753825296795638
89 x = 0.31950122894109784
90 x = 0.869680774584904
91 x = 0.4533444996092216
92 x = 0.9912930571331444
93 x = 0.03452452805107558
94 x = 0.13333034005570432
95 x = 0.46221344190533825
96 x = 0.9942887041094349
97 x = 0.022714707959261945
98 x = 0.08879500000634956
99 x = 0.32364179192088777
100 x = 0.8755911297724981
101 x = 0.435725212944874
102 x = 0.9834750069960728
103 x = 0.06500767044058935
104 x = 0.2431266928979083
105 x = 0.736064416393738
106 x = 0.7770943652507356
107 x = 0.6928748509851677
108 x = 0.8511971674297975
109 x = 0.5066421983571473
110 x = 0.9998235248039372
111 x = 0.000705776210271844
112 x = 0.002821112360851433
113 x = 0.011252614743595537
114 x = 0.04450397362011101
115 x = 0.1700934798085259
116 x = 0.56464675174061
117 x = 0.9832831899575518

118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.06574943321781154
0.24570578099739232
0.7413378007274152
0.7670242637602178
0.7147921702532545
0.8154572943915878
0.6019467816605565
0.9584274148362193
0.15937722130632362
0.5359044905399951
0.9948434702362536
0.02051975985816785
0.08039479725412389
0.2957258953143688
0.8330883606195351
0.5562085760791623
0.9873623839006122
0.04991162703484937
0.18968182608633385
0.6148105237555506
0.9472741745399046
0.19978325115858786
0.6394796148603699
0.9221817481536115
0.2870502861038421
0.818609677406178
0.5939514938525249
0.9646924672115159
0.13624364366749683
0.4707252529108039
0.9965719567314544
0.013665167151578403
0.05391372143319131
0.20402812829766223
0.6496026046440596
0.9104762427348527
0.32603701660111306
0.8789475216278343
0.4255951034084882
0.9778556454528259
0.08661592843545267
0.31645443750686886
0.8652441059563204
0.4663869722566728
0.9954806574637053
0.0179956723173374
0.07068731238073767
0.2627624649965027
0.7748734079418576
0.6977784384257166
0.84353475717554
0.5279354824493709
0.9968784352812835
0.012447282209693444
0.04916938950114277
0.1870070425489107
0.6081416343440824
0.9532215476855631
0.17836091485401137
0.5861931956258059

178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.9702829321112463
0.1153358550593957
0.40813398238845505
0.9662425392327811
0.13047157843907417
0.45379498263476276
0.9914603854811126
0.03386675801102485
0.13087920285139013
0.45499934844949924
0.9918997654401217
0.03213848303981299
0.12442240379085057
0.4357658769030284
0.9834959097198525
0.06492682113668913
0.24284531613509402
0.735485874265361
0.7781856120859143
0.6904510609135408
0.8549135735876271
0.49614542113304
0.9999405688870334
0.00023771032363756306
0.0009506152697583969
0.0037988464014691962
0.015137660669948963
0.05963404759756177
0.22431131185877404
0.6959829889238794
0.8463626722098502
0.5201315971986076
0.998378875176932
0.006473987109504037
0.02572829840164005
0.10026541225198488
0.3608490374316976
0.9225480384652597
0.2858126207566457
0.8164950662914541
0.5993234920526723
0.9605393757058509
0.15161393369786041
0.5145085952260848
0.9991580026582625
0.0033651535288560692
0.013415317082333188
0.05294138539965459
0.20055438044647933
0.6413292837208326
0.9201041342518256
0.29405006553809643
0.8303384979805505
0.5635059070078153
0.9838679991004589
0.06348703778607338
0.2378257352768923
0.7250586196675913
0.7973944708532739
0.6462261148236049

238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.9144716933743756
0.31285286156551023
0.8599037943031278
0.4818770353848475
0.9986862326142317
0.005248165604097454
0.02088248944755769
0.08178564432812133
0.30038701083982144
0.8406186182341537
0.5359158276490233
0.9948402132971426
0.020532653216153815
0.08044425347223594
0.29589190222212236
0.8333595376859854
0.5554856745351444
0.9876853596855201
0.048651959793619665
0.18513978640743872
0.6034521835857868
0.9571905828453307
0.1639070838301874
0.5481662068018853
0.9907200660892721
0.03677526694936169
0.14169138676065948
0.48645975071400277
0.9992666465970923
0.002931262382776572
0.011690680334479566
0.04621603331118631
0.1763204463046625
0.5809261860783486
0.97380380962725
0.10203979993081858
0.36651071664358836
0.9287224449159666
0.2647882609011041
0.7787017511602916
0.6893013356007476
0.8566600173590926
0.4911745280696471
0.9996884441808263
0.001245835008581147
0.004977131614850162
0.019809439102954487
0.07766810090152329
0.28654306801549634
0.817744552751052
0.5961535967881358
0.9630179432988184
0.14245753673332875
0.4886535478448042
0.9994850320939594
0.0020588108563852057
0.008218288616971344
0.032602993396718016
0.12616015287316631
0.4409750748007425

298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.9860642328208882
0.05496624628896565
0.2077798322314657
0.6584294941973187
0.899600381473527
0.36127814050484663
0.9230249827928277
0.28419945573251115
0.8137205003754223
0.6063177905767786
0.954786109627489
0.17267837795957422
0.5714422229792986
0.9795840351031048
0.0799966130968959
0.2943886199596858
0.83089584159167
0.5620317680693618
0.9846082390007556
0.060619418770346316
0.22777881935316682
0.7035825152289769
0.8342166379721736
0.5531969556103082
0.9886803356551795
0.04476611817576423
0.17104845135695096
0.5671635145813589
0.9819562492363183
0.07087269528823933
0.26339902540327886
0.7760799152795269
0.695119521516997
0.8477134892919126
0.5163813174577719
0.9989266097533908
0.004288952319950899
0.017082228831792348
0.06716170515972253
0.25060404207904413
0.7512066246907553
0.747580926845912
0.7548147386484766
0.7402777958700343
0.7690663232473526
0.7104132547766047
0.8229050488572626
0.5829293176899555
0.9724909130699138
0.10700934826543682
0.3822333905969731
0.9445241028388597
0.20959328798122762
0.6626557664577831
0.8941724065521245
0.3785124556516268
0.9409631062728081
0.22220615562494458
0.6913223201093099
0.853583079311963

358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.4999160240970804
0.999999971792191
1.1283123272727172e-7
4.5132487998553857e-7
0.000001805298705165565
0.0000072211817842486
0.000028884518555128958
0.00011553473695886719
0.00046208555473369213
0.0018474881266951943
0.007376299657267658
0.029287559442535405
0.11371919321774145
0.4031485532465897
0.9624791890470853
0.14445199879340137
0.4943424753519701
0.9998719696594278
0.0005120557952163029
0.0020471743763155535
0.008171933813554043
0.03242061324520374
0.12547806832803465
0.4389332907867989
0.9850834281034814
0.05877627111749847
0.22128648428408312
0.6892751046290934
0.856699739070583
0.49106118458791187
0.9996803903161146
0.0012780301341416536
0.005105587092471518
0.020318080291650824
0.07962102361965141
0.2931260648696413
0.8288126998547206
0.5675288336569977
0.9817594264997022
0.0716314199147123
0.2660014383828578
0.7809786926444341
0.6842038971192985
0.8642756971442516
0.46921286588027805
0.9962086094907769
0.015108063468918525
0.059519239548550616
0.22390679868845145
0.695090176758163
0.8477592917298749
0.5162539000621432
0.9989432429310794
0.004222561333671588
0.01681892523781988
0.06614419596665802
0.24707656522632945
0.7441189445691553
0.7616237636097668
0.7262120252586435

418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.7953124785135314
0.6511621601367803
0.9086000053711295
0.33218414244285177
0.8873513518094357
0.3998357210056111
0.9598684688541368
0.15408396541500727
0.5213683880679765
0.9981735679655055
0.007292384722071518
0.028956823388547263
0.11247330307116699
0.39929223666971364
0.9594317856200442
0.15568973744791112
0.5258017724052465
0.9973370741629914
0.010623338651980594
0.04204193331146371
0.16109763661959262
0.5405807523806972
0.9934128101448662
0.02617519513978507
0.10196021719671697
0.36625732522366106
0.9284515877746817
0.2657169477334168
0.7804458056826138
0.6854006003001185
0.8625064696334228
0.47435623789564924
0.9973695898605419
0.010493964327825279
0.04153536416204644
0.1592407107438905
0.5355324271426845
0.9949497864853993
0.02009883543223044
0.07877948898599424
0.2902931244043994
0.8240921053117253
0.5798572290984543
0.974491291842868
0.09943205586114515
0.358181288513485
0.9195498122892186
0.2959118200323257
0.8333920591899288
0.5553989394763962
0.9877238300195623
0.04850186252419632
0.18459772742352112
0.6020856258143701
0.9583141000083537
0.159792742934131
0.5370360889588709
0.9945133124585224
0.021826335205199297
0.0853997851868383

478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.3124266475075207
0.8592649497389284
0.48371478355634095
0.9989391669015328
0.004238830926417435
0.016883452955178728
0.06639360788595598
0.24794198687136765
0.7458670320705848
0.7581976101632081
0.7333359764240321
0.7822172884249741
0.68141360845622
0.8683564106675732
0.4572542188804087
0.9926911927859039
0.029021554204813116
0.11271721438540085
0.40004817586638575
0.9600385314094522
0.15345819847453795
0.519635119181949
0.9984578483788427
0.006159093558138804
0.02448463649872359
0.09554055629699586
0.3456502335978257
0.9047045984463769
0.3448567519854275
0.9037222903819553
0.3480332489949927
0.9076244263559285
0.3353693081520007
0.8915869412065964
0.3866386699058464
0.9485968353571373
0.19504351723024563
0.6280061744668021
0.9344576771934985
0.24498610691051947
0.739871657325388
0.7698463520478867
0.708731785145792
0.8257241674794036
0.5756150668793978
0.9771294466432968
0.0893899645834455
0.32559759526086346
0.8783352048848256
0.427449890979028
0.9789459267241802
0.08244319709726469
0.30258526539858505
0.8441096902490116
0.5263540843069171
0.9972218489613757
0.011081731661723692
0.04383570754040497
0.1676565531393482
0.5581913333151245

538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.9864550749080323
0.053445840384882724
0.20235753012174545
0.6456358404990893
0.9151608078484953
0.3105660145063391
0.8564590605599498
0.49174775257887215
0.999727601650002
0.0010892965965478237
0.004352440117890292
0.017333985531641886
0.06813407390892287
0.25396728752598524
0.7578716175707151
0.7340089154058514
0.7809593100423082
0.6842474644022005
0.8642114874454394
0.46939996965112213
0.9962545525705909
0.014925676211850439
0.05881160160587776
0.22141118848971714
0.6895530964051523
0.8562784945728762
0.4922625372195401
0.9997605266788839
0.0009576638945781675
0.0038269870977727556
0.015249365070104947
0.06006728774025444
0.2258368347351357
0.6993382352478028
0.8410570718731665
0.534720294901207
0.9951780044878928
0.019194975485553507
0.07530611360665003
0.2785404114404494
0.8038226025401383
0.6307673047429487
0.9315996480410591
0.25488697524333565
0.7596784203785555
0.7302684719587929
0.7879057232870506
0.6684411779942411
0.8865102782236496
0.40243921930990795
0.9619275762845589
0.14649165707149192
0.5001274059197613
0.9999999350709264
2.597162773854525e-7
0.000001038864839731631
0.000004155455041965903
0.00001662175109663719
0.00006648589925611068
0.00026592591552524315

598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.001063420795730781
0.004249159727767953
0.01692441747750347
0.06655192628220258
0.2484910695613234
0.7469730316383718
0.7560172865734072
0.7378205959023596
0.7737654566585863
0.7002098989620628
0.8396639854304024
0.5385135080061414
0.9940668388042435
0.023591835175926626
0.09214104195583414
0.3346042813725094
0.8905770250387839
0.38979835004741276
0.9514223853909098
0.18487131987192348
0.6027756598429457
0.9577486549753885
0.16186467547289085
0.5426580092277863
0.9927211769948884
0.028903366963087523
0.1122718493651385
0.3986675248210806
0.9589269178964547
0.157544336120243
0.5308964731066995
0.996181631798268
0.015215153064031931
0.05993460872508004
0.22536980560820638
0.6983130253133025
0.8426877759643417
0.5302603528184525
0.9963372441892111
0.014597360122637721
0.05753710880035099
0.21690635964499025
0.6794319631621936
0.8712166823830448
0.44879269888210244
0.9895112492488838
0.0415149474351887
0.15916582629856887
0.5353282641490507
0.9950076550088596
0.019869685930519458
0.0778995260461679
0.28732475955180126
0.8190769684012034
0.5927595529435898
0.9655826613508214
0.1329311417979455
0.46104181335295996
0.9939290387726977
0.024136418628315684

658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.09421540769645752
0.34135545859619126
0.8993276379311008
0.3621497503374706
0.9239892346719132
0.2809325155293013
0.8080377489907208
0.6204509807869187
0.9419662449098773
0.21866335344104926
0.6833987652118562
0.8654595716750658
0.4657572058843097
0.9953097242046017
0.018673108433445478
0.07329769381951307
0.2717005676010159
0.7915174766652068
0.6600702431950025
0.897510068973971
0.36794298025723526
0.9302437741466362
0.2595611792322333
0.768756693871223
0.7110793579976389
0.8217820185092184
0.5858253302565322
0.9705360507454287
0.11438329979558139
0.4051990420938222
0.9640511135202844
0.13862625616233654
0.47763606905900313
0.9979994183714653
0.007986317206728958
0.031690143776809857
0.12274351425685989
0.43071017585894367
0.980795681082006
0.07534205221155996
0.27866250952044214
0.8040388612328465
0.6302414834409356
0.932148623964418
0.2529902672226402
0.7559447676530292
0.7379691036441476
0.7734828228432038
0.7008285824388513
0.8386715219024061
0.5412064010092322
0.9932081300634654
0.026982961757199102
0.10501952612803453
0.3759617010395104
0.9384580015639528
0.2310183234581792
0.7105954307390051
0.8225982582074116
0.5837214552061767

718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.9719628717526406
0.10900419074800201
0.3884891085895008
0.9502612843873435
0.1890591031274392
0.6132630346083501
0.9486859399652308
0.19472370911006934
0.6272255448819458
0.935254642917968
0.24221358327340867
0.7341846534050568
0.7806301924382137
0.6849867803683645
0.863119564355786
0.4725767279282569
0.9969918565955166
0.011996377910965892
0.04740985931193273
0.1806486582078219
0.5920588819821417
0.9661006489927924
0.1310007400339911
0.4553581845781511
0.9920284332633662
0.03163208344158876
0.1225259789549325
0.4300534537442718
0.9804299226675812
0.0767483576224877
0.2834321888989538
0.8123935327796064
0.609641122709908
0.9519152968436436
0.18309025791488587
0.5982728614861857
0.9613697787812678
0.14855170890929592
0.5059363947576949
0.9998590368691233
0.000563773041089925
0.002253820804192261
0.008994964383899405
0.035656219998527146
0.13753941589577512
0.47448929988329647
0.9973968167182224
0.010385626874316115
0.04111106251497439
0.15768377221545704
0.5312784007814436
0.9960866465782215
0.015592156347098835
0.06139616403018584
0.2305067002902574
0.7094934456462194
0.824449984925098
0.5789288291284147
0.97508095972967
0.09719232680934263

778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.35098391367491427
0.9111768240654184
0.3237344774059037
0.8757218621785207
0.4353323291244189
0.9832723693741101
0.06579126799813471
0.2458511082133293
0.7416333632144286
0.766453271126736
0.7160106172234485
0.8133576529869793
0.6072279252579675
0.9540086881794869
0.17550444423016565
0.5788105371425053
0.9751555969412392
0.09690863478165851
0.35006940514565454
0.9100832669064884
0.32732685681320706
0.8807359424879732
0.4201605683911792
0.9745026606415217
0.0993889001764676
0.35804298679271906
0.9193928256050715
0.2964386313239763
0.8342510767309759
0.5531048708167331
0.9887194907821524
0.044613037318534714
0.17049085687899898
0.5656948983986546
0.9827367212975618
0.0678610316435204
0.2530236481111901
0.756010726430779
0.7378340318095392
0.7737398932528764
0.7002658833676153
0.8395743038359548
0.5387571686973067
0.993991527498274
0.023889483039687937
0.0932751025591376
0.33829943120687983
0.8954117042079256
0.3745983367015358
0.9370976913679145
0.2357824328033573
0.7207563087387504
0.805066608608166
0.6277374572492481
0.934732568061986
0.24403037706492278
0.7379182085378976
0.7735797041844699
0.7006165818333518
0.8390119483740082

838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.5402835954386352
0.9935089277541455
0.025795752907814568
0.10052132815893418
0.3616671629763922
0.9234561048039999
0.2827397092168955
0.8111918641953635
0.6126384946344577
0.949250278105933
0.19269675048696747
0.6222588513549235
0.9402110930614989
0.22485677418240158
0.6971848211467442
0.8444725852373061
0.5253545520797076
0.9974285867553496
0.010259204314302458
0.04061581216455942
0.1558646718670906
0.5262835037234191
0.9972367097280841
0.011022617995156171
0.04360447955075612
0.16681251565545527
0.5559444011046151
0.9874808959401837
0.049449504373423034
0.1880170035625834
0.6106664397357237
0.9510117564648778
0.18635358212186307
0.6065036982088524
0.9546278490713508
0.17325407539502835
0.5729484030161688
0.9787141219895624
0.08333115763104938
0.30554830319567433
0.8487541504396745
0.5134821702044036
0.999272924346318
0.002906188058703367
0.011590968518683268
0.04582647186992865
0.17490562538353316
0.5772545903709133
0.9761269130664896
0.09321265061510191
0.33809620952163544
0.8951486505149513
0.3754301759848515
0.9379294357793397
0.23287123711195662
0.714568896151614
0.8158407552171115
0.6009784693755386
0.9592133948902937
0.15649223181332483

898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957

x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x
x

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

0.5280096527816377
0.9968618374042084
0.01251325812525583
0.04942670598538619
0.1879348268832815
0.6104613109105301
0.9511931951677088
0.18569880253741522
0.6048590290943412
0.9560183360695684
0.1681891086733686
0.5596061295881056
0.9857884372621039
0.056038376889771944
0.21159230882132726
0.6672840146759493
0.8880642337355871
0.3976246019808466
0.9580771115216797
0.16066143959981835
0.539397365702129
0.9937913903029308
0.02468025145079446
0.09628454655648008
0.3480553306035724
0.9076512697680413
0.33528176902601436
0.8914716175392029
0.3869998906449602
0.9489239011429962
0.19386932393021356
0.6251360366762219
0.937363889299869
0.23485131334596765
0.7187846958625671
0.8085330274252961
0.619229483951126
0.9431373206269927
0.21451726027011936
0.673998421265285
0.8788981975887536
0.4257446234559752
0.9779445562172203
0.0862760047292973
0.3153298229489903
0.863587702831795
0.4712159293979934
0.9966859091183148
0.01321243073325259
0.05215144962948637
0.19772670372411805
0.6345234174340516
0.9276138006474556
0.2685857499833525
0.7857897795569302
0.673296807603205
0.8798728658981511
0.42278642301730135
0.9761522541181475
0.09311612359282818

958 x = 0.33778204447949334
959 x = 0.8947413396269877
960 x = 0.37671709915796475
961 x = 0.9392053054398917
962 x = 0.22839479869380586
963 x = 0.7049224584936871
964 x = 0.8320271440196124
965 x = 0.5590319025367182
966 x = 0.9860609379315816
967 x = 0.054979058468284873
968 x = 0.20782544639290315
969 x = 0.6585361208979748
970 x = 0.8994651934824909
971 x = 0.3617102367839845
972 x = 0.9235037655586334
973 x = 0.28257824223063216
974 x = 0.8109111169939133
975 x = 0.6133371093183887
976 x = 0.9486187986054064
977 x = 0.19496469415136713
978 x = 0.627813848743324
979 x = 0.9346544802776747
980 x = 0.24430193109817788
981 x = 0.7384739902395161
982 x = 0.7725206239169727
983 x = 0.7029300381596156
984 x = 0.8352775984501478
985 x = 0.5503557279100058
986 x = 0.9898572026666139
987 x = 0.04015968398255974
988 x = 0.1541875350599227
989 x = 0.5216549563682712
990 x = 0.998124251458753
991 x = 0.007488920434627826
992 x = 0.029731346021406563
993 x = 0.11538957234064781
994 x = 0.40829927574276087
995 x = 0.9663639086827913
996 x = 0.1300188187124363
997 x = 0.4524557019722358
998 x = 0.9909581589001887
999 x = 0.03584034483734833
1000 x = 0.13822325807715316

Factorizing Cubic Equations Of The Form


Ax^3 + Bx^2 + Cx + D = 0
Written by Adi Cox 4th May 2013
_________________________________________________________________
Where a, b, c are the integer solutions to the cubic equation if
and only if A = 1.
B = a+b+c
C = ab+ac+bc
D = abc
The html file below finds the value of C in the cubic equation
for the values B and D that are entered.
_________________________________________________________________
<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A for loop</title>
</head>
<body>
<script type="text/javascript" language="javascript">
document.write("<h3>a, b, c, = a*b + a*c + b*c<h3>")
B=28;
D=-160;
u=-300;
v=300;
for (a = u; a <= v; a++)
{
for (b = u; b <= v; b++)
{
for (c = u; c <= v; c++)
{
if((a+b+c==B)&&(a*b*c==D))
{
document.write(a,", ", b,", ", c,", ",
" = ", a*b + a*c + b*c,"<br />");
}
}
}
}
</script>
</body>
</html>
_________________________________________________________________

The above html file gives the value of C in the cubic equation
where B=28 and D=-160
This is the output below:
_________________________________________________________________
a, b, c, = a*b + a*c + b*c
-5, 1, 32,
-5, 32, 1,
1, -5, 32,
1, 32, -5,
32, -5, 1,
32, 1, -5,

=
=
=
=
=
=

-133
-133
-133
-133
-133
-133

_________________________________________________________________
The above answer is divided by the value of A in the cubic
equation to get the three solutions.
If A=2
then the solutions would be 1/2, -5/2 and 32/2

_____________________________________________________________________
Matrices
By Adi Cox

28-7-14

_____________________________________________________________________
The 2 x 2 matrix
_____________________________________________________________________
The determinate:
[a b]
[c d]

[1 -2]
[1 4]

det = ad-bc

=> det = 1.4 - -2.1 = 6

The eigenvalues L1 and L2 are:


[a-L
[c

b ]
d-L] = (a-L)(d-L) - b.c

[1-L
[1

-2 ]
4-L] = (1-L)(4-L) - -2.1

LL-aL-bL+ad-bc
=> L^2 - 5L + 6 = 0
Solve the quadratic:
L^2 - 5L + 6 = (L - 2)(L - 3)
L1 = 2
L2 = 3

Find the eigenvector for L1:


[1-2
[1

-2 ] [-1 -2]
[-1]
4-2] = [ 1 2] ---> [ 1]

Find the eigenvector for L2:


[1-3
[1

-2 ] [-2 -2]
[-2]
4-3] = [ 1 1] ---> [ 1]

Check L1 eigenvector:

[1 -2][-1] [-3]
[1 4][ 1] = [ 3]
Check L2 eigenvector:
[1 -2][-2] [-4]
[1 4][ 1] = [ 2]
_____________________________________________________________________
The html file below finds the eigenvalue and eigenvector
for a 2 x 2 matrix
_____________________________________________________________________
<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A for loop</title>
</head>
<body>
<script type="text/javascript" language="javascript">
document.write("<h3>2 x 2 Matrix<h3>")
a=6;
b=-2;
c=1;
d=3;
det=a*d-b*c;
document.write("<h3>[a b][",a," ",b,"]")
document.write("<h3>[c d][",c," ",d,"]")
//det = ad-bc

=> det = 1.4 - -2.1 = 6

document.write("<h3>The determinent = ",det,"<h3>")


//LL-aL-dL+ad-bc
document.write("<h3>The solutions to the quadratic LL-aL-dL+ad-bc are L1 and L2:
<h3>")
a1=1;
b1=0-a-d;
c1=det;
F=0-b1/2;
S=(a+d)*(a+d)-4*c1;
D=Math.sqrt(S);
L1=F-D/2;
document.write("<h3>If (a+d)*(a+d)-4*det is negative then the solution is an ima
ginary number.<h3>")
document.write("<h3> (a+d)*(a+d)-4*det = ",S,"<h3>")

document.write("<h3>L1 = ",L1,"<h3>")
L2=F+D/2;
document.write("<h3>L2 = ",L2,"<h3>")
document.write("<h3> The eigenvector for L1 is:<h3>")
//Find the eigenvector for L1:
//[1-2 -2 ] [-1 -2]
[-1]
//[1
4-2] = [ 1 2] ---> [ 1]
document.write("<h3> [",a-L1,"]")
document.write("<h3> [",c,"]")
document.write("<h3> The eigenvector for L2 is:<h3>")
//Find the eigenvector for L2:
//[1-3 -2 ] [-2 -2]
[-2]
//[1
4-3] = [ 1 1] ---> [ 1]
document.write("<h3> [",a-L2,"]")
document.write("<h3> [",c,"]")
document.write("<h3>Check L1 eigenvector:<h3>")
//Check L1 eigenvector:
//[1 -2][-1] [-3]
//[1 4][ 1] = [ 3]
document.write("<h3>[",a," ",b,"][",a-L1,"]
document.write("<h3>[",c," ",d,"][",c,"] =

[",(a-L1)*a+b*c,"]")
[",(a-L1)*c+d*c,"]")

document.write("<h3>Check L2 eigenvector:<h3>")
//Check L2 eigenvector:
//[1 -2][-2] [-4]
//[1 4][ 1] = [ 2]
document.write("<h3>[",a," ",b,"][",a-L2,"]
document.write("<h3>[",c," ",d,"][",c,"] =

[",(a-L2)*a+b*c,"]")
[",(a-L2)*c+d*c,"]")

</script>
</body>
</html>
_____________________________________________________________________
Below is the output of the above html file.
_____________________________________________________________________
2 x 2 Matrix
[a b][6 -2]
[c d][1 3]
The determinent = 20

The solutions to the quadratic LL-aL-dL+ad-bc are L1 and L2:


If (a+d)*(a+d)-4*det is negative then the solution is an imaginary number.
(a+d)*(a+d)-4*det = 1
L1 = 4
L2 = 5
The eigenvector for L1 is:
[2]
[1]
The eigenvector for L2 is:
[1]
[1]
Check L1 eigenvector:
[6 -2][2] [10]
[1 3][1] = [5]
Check L2 eigenvector:
[6 -2][1] [4]
[1 3][1] = [4]
_____________________________________________________________________

This is the M500 Society Problem 192.6 - 500 Factors


Find the smallest number with 500 factors?
_________________________________________________________________
Solution 192.6 - 500 Factors:
First I looked at a smaller number
48 has 10 factors. This can be worked out by looking at the prime
numbers involved
2^4.3^1 = 48
I discovered that the number of factors is equal to the power of
indices of prime numbers plus one.
2^4.3^1 becomes (4+1)(1+1) = 5*2
So the smallest number to have 500 factors is made up from:
5.5.5.2.2 prime factors = 500 factors.
Working backwords, minus one from the above prime factors to get:
5-1,5-1,5-1,2-1,2-1, = 4,4,4,1,1,
Put them into the powers of prime numbers:
2^4.3^4.5^4.7^1.11^1
And we get the answer 62370000.
_________________________________________________________________
Checking the answer with the html file below:
_________________________________________________________________
<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Adi Cox Mathematics</title>
</head>
<body>
<script type="text/javascript" language="javascript">

document.write("<h3>The square root of x<h3>")


u=1;
w=62370000;
n=2;
x=1;

v=100;
for (b = u; b <= v; b++)
{
x=((1/2)*(x+(w/x)))
}
document.write(w,"^",1/n," = ", x,"<br />");

document.write("<h3>The factors of x<h3>")


v=x;
for (b = u; b <= v; b++)
{
if(Math.round(w/b)==w/b)
{
document.write(w,"/",b," = ", w/b,"<br />");
}
}

</script>
</body>
</html>
_________________________________________________________________
The output we get is of the the square root of 62370000 followed
by the 500 factors:
62370000/1 = 62370000
62370000/2 = 31185000
62370000/3 = 20790000
62370000/4 = 15592500
62370000/5 = 12474000
62370000/6 = 10395000
62370000/7 = 8910000
62370000/8 = 7796250
62370000/9 = 6930000
62370000/10 = 6237000
62370000/11 = 5670000
62370000/12 = 5197500
62370000/14 = 4455000
62370000/15 = 4158000
62370000/16 = 3898125
62370000/18 = 3465000
62370000/20 = 3118500
62370000/21 = 2970000

62370000/22 = 2835000
62370000/24 = 2598750
62370000/25 = 2494800
62370000/27 = 2310000
62370000/28 = 2227500
62370000/30 = 2079000
62370000/33 = 1890000
62370000/35 = 1782000
62370000/36 = 1732500
62370000/40 = 1559250
62370000/42 = 1485000
62370000/44 = 1417500
62370000/45 = 1386000
62370000/48 = 1299375
62370000/50 = 1247400
62370000/54 = 1155000
62370000/55 = 1134000
62370000/56 = 1113750
62370000/60 = 1039500
62370000/63 = 990000
62370000/66 = 945000
62370000/70 = 891000
62370000/72 = 866250
62370000/75 = 831600
62370000/77 = 810000
62370000/80 = 779625
62370000/81 = 770000
62370000/84 = 742500
62370000/88 = 708750
62370000/90 = 693000
62370000/99 = 630000
62370000/100 = 623700
62370000/105 = 594000
62370000/108 = 577500
62370000/110 = 567000
62370000/112 = 556875
62370000/120 = 519750
62370000/125 = 498960
62370000/126 = 495000
62370000/132 = 472500
62370000/135 = 462000
62370000/140 = 445500
62370000/144 = 433125
62370000/150 = 415800
62370000/154 = 405000
62370000/162 = 385000
62370000/165 = 378000
62370000/168 = 371250
62370000/175 = 356400
62370000/176 = 354375
62370000/180 = 346500
62370000/189 = 330000
62370000/198 = 315000
62370000/200 = 311850
62370000/210 = 297000
62370000/216 = 288750
62370000/220 = 283500
62370000/225 = 277200
62370000/231 = 270000
62370000/240 = 259875

62370000/250
62370000/252
62370000/264
62370000/270
62370000/275
62370000/280
62370000/297
62370000/300
62370000/308
62370000/315
62370000/324
62370000/330
62370000/336
62370000/350
62370000/360
62370000/375
62370000/378
62370000/385
62370000/396
62370000/400
62370000/405
62370000/420
62370000/432
62370000/440
62370000/450
62370000/462
62370000/495
62370000/500
62370000/504
62370000/525
62370000/528
62370000/540
62370000/550
62370000/560
62370000/567
62370000/594
62370000/600
62370000/616
62370000/625
62370000/630
62370000/648
62370000/660
62370000/675
62370000/693
62370000/700
62370000/720
62370000/750
62370000/756
62370000/770
62370000/792
62370000/810
62370000/825
62370000/840
62370000/875
62370000/880
62370000/891
62370000/900
62370000/924
62370000/945
62370000/990

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

249480
247500
236250
231000
226800
222750
210000
207900
202500
198000
192500
189000
185625
178200
173250
166320
165000
162000
157500
155925
154000
148500
144375
141750
138600
135000
126000
124740
123750
118800
118125
115500
113400
111375
110000
105000
103950
101250
99792
99000
96250
94500
92400
90000
89100
86625
83160
82500
81000
78750
77000
75600
74250
71280
70875
70000
69300
67500
66000
63000

62370000/1000
62370000/1008
62370000/1050
62370000/1080
62370000/1100
62370000/1125
62370000/1134
62370000/1155
62370000/1188
62370000/1200
62370000/1232
62370000/1250
62370000/1260
62370000/1296
62370000/1320
62370000/1350
62370000/1375
62370000/1386
62370000/1400
62370000/1485
62370000/1500
62370000/1512
62370000/1540
62370000/1575
62370000/1584
62370000/1620
62370000/1650
62370000/1680
62370000/1750
62370000/1782
62370000/1800
62370000/1848
62370000/1875
62370000/1890
62370000/1925
62370000/1980
62370000/2000
62370000/2025
62370000/2079
62370000/2100
62370000/2160
62370000/2200
62370000/2250
62370000/2268
62370000/2310
62370000/2376
62370000/2475
62370000/2500
62370000/2520
62370000/2625
62370000/2640
62370000/2700
62370000/2750
62370000/2772
62370000/2800
62370000/2835
62370000/2970
62370000/3000
62370000/3024
62370000/3080

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

62370
61875
59400
57750
56700
55440
55000
54000
52500
51975
50625
49896
49500
48125
47250
46200
45360
45000
44550
42000
41580
41250
40500
39600
39375
38500
37800
37125
35640
35000
34650
33750
33264
33000
32400
31500
31185
30800
30000
29700
28875
28350
27720
27500
27000
26250
25200
24948
24750
23760
23625
23100
22680
22500
22275
22000
21000
20790
20625
20250

62370000/3150
62370000/3240
62370000/3300
62370000/3375
62370000/3465
62370000/3500
62370000/3564
62370000/3600
62370000/3696
62370000/3750
62370000/3780
62370000/3850
62370000/3960
62370000/4050
62370000/4125
62370000/4158
62370000/4200
62370000/4375
62370000/4400
62370000/4455
62370000/4500
62370000/4536
62370000/4620
62370000/4725
62370000/4752
62370000/4950
62370000/5000
62370000/5040
62370000/5250
62370000/5400
62370000/5500
62370000/5544
62370000/5625
62370000/5670
62370000/5775
62370000/5940
62370000/6000
62370000/6160
62370000/6237
62370000/6300
62370000/6480
62370000/6600
62370000/6750
62370000/6875
62370000/6930
62370000/7000
62370000/7128
62370000/7425
62370000/7500
62370000/7560
62370000/7700
62370000/7875

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

19800
19250
18900
18480
18000
17820
17500
17325
16875
16632
16500
16200
15750
15400
15120
15000
14850
14256
14175
14000
13860
13750
13500
13200
13125
12600
12474
12375
11880
11550
11340
11250
11088
11000
10800
10500
10395
10125
10000
9900
9625
9450
9240
9072
9000
8910
8750
8400
8316
8250
8100
7920

1st May 2013


Problem 1
Solution by Adi Cox.
_________________________________________________________________
Emilio Carraro
12:31 PM Hello.
Find two 3-digit numbers A anb B such that
a^3 + b^3 + c^3 = B,
where A = 100a + 10b + c

x^3 + y^3 + z^3 = A


and

B = 100x + 10y + z

_________________________________________________________________
Where a=2, b=4, c=4,
x=1, y=3, z=6,
A=244
B=136
_________________________________________________________________
<!DOCTYPE HTML PUBLIC " - //W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A for loop</title>
</head>
<body>
<script type="text/javascript" language="javascript">
document.write("<h3><h3>")
u=0;
v=9
for (a = u; a <= v; a++)
{
for (b = u; b <= v; b++)
{
for (c = u; c <= v; c++)
{
{
if( ((a*a*a + b*b*b + c*c*c)>99)&&((a*a*a + b*b*b + c*c*c)<1000))
document.write(a,b,c," = ", a*a*a + b*b*b + c*c*c,"<br />");
}
}
}
}
</script>
</body>

</html>
_________________________________________________________________
005
006
007
008
009
015
016
017
018
019
025
026
027
028
029
035
036
037
038
039
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
080
081

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

125
216
343
512
729
126
217
344
513
730
133
224
351
520
737
152
243
370
539
756
128
189
280
407
576
793
125
126
133
152
189
250
341
468
637
854
216
217
224
243
280
341
432
559
728
945
343
344
351
370
407
468
559
686
855
512
513

082
083
084
085
086
087
090
091
092
093
094
095
096
105
106
107
108
109
115
116
117
118
119
125
126
127
128
129
135
136
137
138
139
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

520
539
576
637
728
855
729
730
737
756
793
854
945
126
217
344
513
730
127
218
345
514
731
134
225
352
521
738
153
244
371
540
757
129
190
281
408
577
794
126
127
134
153
190
251
342
469
638
855
217
218
225
244
281
342
433
560
729
946
344

171
172
173
174
175
176
177
178
180
181
182
183
184
185
186
187
190
191
192
193
194
195
196
205
206
207
208
209
215
216
217
218
219
225
226
227
228
229
235
236
237
238
239
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

345
352
371
408
469
560
687
856
513
514
521
540
577
638
729
856
730
731
738
757
794
855
946
133
224
351
520
737
134
225
352
521
738
141
232
359
528
745
160
251
378
547
764
136
197
288
415
584
801
133
134
141
160
197
258
349
476
645
862
224

261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
280
281
282
283
284
285
286
287
290
291
292
293
294
295
296
305
306
307
308
309
315
316
317
318
319
325
326
327
328
329
334
335
336
337
338
339
343
344
345
346
347
348

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

225
232
251
288
349
440
567
736
953
351
352
359
378
415
476
567
694
863
520
521
528
547
584
645
736
863
737
738
745
764
801
862
953
152
243
370
539
756
153
244
371
540
757
160
251
378
547
764
118
179
270
397
566
783
118
155
216
307
434
603

349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
380
381
382
383
384
385
386
387
390
391
392
393
394
395
396
404
405
406
407
408
409
414
415
416
417
418
419
424
425
426

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

820
152
153
160
179
216
277
368
495
664
881
243
244
251
270
307
368
459
586
755
972
370
371
378
397
434
495
586
713
882
539
540
547
566
603
664
755
882
756
757
764
783
820
881
972
128
189
280
407
576
793
129
190
281
408
577
794
136
197
288

427
428
429
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
470
471
472
473
474
475
476
477
478
480
481
482
483
484
485
486
487
490
491
492
493

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

415
584
801
118
155
216
307
434
603
820
128
129
136
155
192
253
344
471
640
857
189
190
197
216
253
314
405
532
701
918
280
281
288
307
344
405
496
623
792
407
408
415
434
471
532
623
750
919
576
577
584
603
640
701
792
919
793
794
801
820

494
495
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

857
918
125
126
133
152
189
250
341
468
637
854
126
127
134
153
190
251
342
469
638
855
133
134
141
160
197
258
349
476
645
862
152
153
160
179
216
277
368
495
664
881
189
190
197
216
253
314
405
532
701
918
250
251
258
277
314
375
466
593

558
559
560
561
562
563
564
565
566
567
568
570
571
572
573
574
575
576
577
578
580
581
582
583
584
585
586
587
590
591
592
593
594
595
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

762
979
341
342
349
368
405
466
557
684
853
468
469
476
495
532
593
684
811
980
637
638
645
664
701
762
853
980
854
855
862
881
918
979
216
217
224
243
280
341
432
559
728
945
217
218
225
244
281
342
433
560
729
946
224
225
232
251
288
349

626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
650
651
652
653
654
655
656
657
658
660
661
662
663
664
665
666
667
668
670
671
672
673
674
675
676
677
680
681
682
683
684
685
686
690
691
692
693

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

440
567
736
953
243
244
251
270
307
368
459
586
755
972
280
281
288
307
344
405
496
623
792
341
342
349
368
405
466
557
684
853
432
433
440
459
496
557
648
775
944
559
560
567
586
623
684
775
902
728
729
736
755
792
853
944
945
946
953
972

700
701
702
703
704
705
706
707
708
710
711
712
713
714
715
716
717
718
720
721
722
723
724
725
726
727
728
730
731
732
733
734
735
736
737
738
740
741
742
743
744
745
746
747
748
750
751
752
753
754
755
756
757
758
760
761
762
763
764
765

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

343
344
351
370
407
468
559
686
855
344
345
352
371
408
469
560
687
856
351
352
359
378
415
476
567
694
863
370
371
378
397
434
495
586
713
882
407
408
415
434
471
532
623
750
919
468
469
476
495
532
593
684
811
980
559
560
567
586
623
684

766
767
770
771
772
773
774
775
776
780
781
782
783
784
785
800
801
802
803
804
805
806
807
810
811
812
813
814
815
816
817
820
821
822
823
824
825
826
827
830
831
832
833
834
835
836
837
840
841
842
843
844
845
846
847
850
851
852
853
854

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

775
902
686
687
694
713
750
811
902
855
856
863
882
919
980
512
513
520
539
576
637
728
855
513
514
521
540
577
638
729
856
520
521
528
547
584
645
736
863
539
540
547
566
603
664
755
882
576
577
584
603
640
701
792
919
637
638
645
664
701

855
856
857
860
861
862
863
864
865
866
870
871
872
873
874
875
900
901
902
903
904
905
906
910
911
912
913
914
915
916
920
921
922
923
924
925
926
930
931
932
933
934
935
936
940
941
942
943
944
945
950
951
952
953
954
955
960
961
962
963

=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=

762
853
980
728
729
736
755
792
853
944
855
856
863
882
919
980
729
730
737
756
793
854
945
730
731
738
757
794
855
946
737
738
745
764
801
862
953
756
757
764
783
820
881
972
793
794
801
820
857
918
854
855
862
881
918
979
945
946
953
972

We have 717 3 digit answers above.


_________________________________________________________________
This is the best answer I have found:
2^3 + 4^3 + 4^3 = 136
1^3 + 3^3 + 6^3 = 244

4 solutions below where A = B


1^3 + 5^3 + 3^3 = 153
1^3 + 5^3 + 3^3 = 153
3^3 + 7^3 + 0^3 = 370
3^3 + 7^3 + 0^3 = 370
3^3 + 7^3 + 1^3 = 371
3^3 + 7^3 + 1^3 = 371
4^3 + 0^3 + 7^3 = 370
4^3 + 0^3 + 7^3 = 370

_________________________________________________________________
Thomas Andrews5:56 PM
There are four solutions where A=B, and exactly one solution
with A<B, but I only solved that brute force.?
Emilio Carraro6:03 PM
Ok +Thomas Andrews! brute force always works! ;)
What is the solution with A<B?

The Investigation Of A Tetrahedron By


Adi Cox
Below is a right tetrahedron as all three sides that meet at
the origin are at right angles

The 4 x 4 Magic Square

To find the value that a line equals in a 4x4 magic square with numbers from
1 to 16
we add those numbers from 1 to 16 than divide the answer by 4

1+2+3+4+5+6+7+8+9+10+11+12+13+14+15+16=136
136/4=34

The HTML file that finds all partitions of 4 values that add up to 34:

We get 86 answers. The answers we get are:

Noughts And Crosses, Orbits And Stabilizers

by Adi Cox

16th September 2005

G = { r(0), r(pi/2), r(pi), r(3pi/2), q(0), q(pi/4), q(pi/2), q(3pi/4) } where q is the vertical line
through the center.
Looking at noughts and crosses where crosses win, so there will be five crosses and four noughts
in a 3 x 3 matrix. There will be 5 from 9 combinations:
(9!)/((9-5)!5!) = (9x8x7x6)/(4x3x2) = 2024/24 = 126

There are 24 possibilities out of 126 games where noughts and crosses draw. So we have 126 -

24 = 102 different ways for crosses to win a complete game.

The 24 possibiliies to draw above.


Looking at three dimentional noughts and crosses where crosses win, there will be fourteen
crosses and thirteen noughts in a 3 x 3 x 3 cube. There will be 14 combinations from 27 the
number of possible outcomes:
(27!)/((27 - 14)!14!) =(27x26x25x24x23x22x21x20x19x18x17x16x15)/
(13x12x11x10x9x8x7x6x5x4x3x2)
= 20,058,300

The Family Of Adi


Polytopes
written by Adrian Cox 2013

Introduction
This paper explains what an adi polytope is. There is one adi polytope in
every dimension of space. I shall use inductive reasoning to show this by
working up through the dimensions:

2 Space
A trivial example of an adi polytope is the line ab. This is the adi polytope in 2
dimensional space.

Squares, cubes and hypercubes are used to find adi polytopes. Using binary
to connect the vertices of a square in two dimensional space, all two digit
binary numbers are connected if and only if there is one digit different.

In 2 space a simplex is represented as a triangle.

Using integration to check that half base times height equals area A:

Area A = Area B
The 2 space adi polytope area = a.b-(A+B) = 0

3 Space
The example of an adi polytope in three dimensional space is the
tetrahedron. We can get this tetrahedron from a cube.

Using binary to connect the vertices of a cube in three dimensional space, all
three digit binary numbers are connected if and only if there is one digit
different.

Using integration to check that one third base times height equals volume V:

The adi polytope in 3 space is the tetrahedron T0{100, 010, 001, 111}

There are four right tetrahedra:


T1 {000, 100, 010, 001}
T2 {100, 101, 001, 111}
T3 {010, 011, 001, 111}
T4 {100, 010, 110, 111}

The volume V of each of the four tetrahedra above is:

So the volume V of the tetrahedron within the cube T0{100, 010, 001, 111}
is:

4 Space
The vertices of the hypercube in 4 space can be represented by all four digit
binary numbers:
4HC {0000, 0001, 0010, 0011, 0100, 0101, 0110, 0111, 1000, 1001, 1010,
1011, 1100, 1101, 1110, 1111}
All four digit binary numbers are connected if and only if there is one digit
different. The connections represent the edges of the hypercube:

There are sixteen vertices on a 4 space hypercube and so there are sixteen
possible right simplexes. An example of the right simplex at vertex 0000
would be:
4RS0000 {0000, 0001, 0010, 0100, 1000}

To find the adi polytope in 4 space we only need to use half the right
simplexes. If we use the RS0000 simplex then none of the other eight right
simplexes use the vertex 0000.

The hypercube in 4 space:


4HC {0000, 0001, 0010, 0011, 0100, 0101, 0110, 0111, 1000, 1001, 1010,
1011, 1100, 1101, 1110, 1111}
The sixteen right simplexes of the hypercube in 4 space:
4RS0000 {0000, 0001, 0010, 0100, 1000}*
4RS0001 {0001, 0000, 0011, 0101, 1001}
4RS0010 {0010, 0000, 0011, 0110, 1010}
4RS0011 {0011, 0010, 0001, 0111, 1011}*
4RS0100 {0100, 0000, 0101, 0110, 1100}
4RS0101 {0101, 0001, 0100, 0111, 1101}*
4RS0110 {0110, 0010, 0100, 0111, 1110}*
4RS0111 {0111, 0011, 0101, 0110, 1111}
4RS1000 {1000, 0000, 1001, 1010, 1100}
4RS1001 {1001, 0001, 1000, 1011, 1101}*
4RS1010 {1010, 0010, 1000, 1011, 1110}*
4RS1011 {1011, 0011, 1001, 1010, 1111}

4RS1100 {1100, 0100, 1000, 1101, 1110}*


4RS1101 {1101, 0101, 1001, 1100, 1111}
4RS1110 {1110, 0110, 1010, 1100, 1111}
4RS1111 {1111, 0111, 1011, 1101, 1110}*
To find the adi polytope we need to find all the right simplexes that do not
repeat the right vertices and so if we initially choose 0000 then we get those
right simplexes that have an asterisk by them.

The volume V of a right simplex in 4 space is:

The proof of this can be obtained by working out the following quadruple
integral:

I have not shown the working out here as it is rather lengthy.

To find the vertices of the adi polytope in 4 space we get the eight simplexes
minus the right vertices. There is one in each right simplex which are the
vertices in chevron brackets below:
4RS0000 {<0000>, 0001, 0010, 0100, 1000}*
4RS0011 {<0011>, 0010, 0001, 0111, 1011}*
4RS0101 {<0101>, 0001, 0100, 0111, 1101}*
4RS0110 {<0110>, 0010, 0100, 0111, 1110}*
4RS1001 {<1001>, 0001, 1000, 1011, 1101}*
4RS1010 {<1010>, 0010, 1000, 1011, 1110}*
4RS1100 {<1100>, 0100, 1000, 1101, 1110}*
4RS1111 {<1111>, 0111, 1011, 1101, 1110}*

The following graph is what we get when we plot the points of the 4 space adi
polytope:

The volume V of the adi polytope in 4 space is:

This below is proof that there is a four dimensional polytope with eight
vertices each of order six. It is proof because each vertex joins six other
vertices and does not cross more than one edge.

n Space
To find the n hypercube just use every n digit binary number and then
connect all the edges. (Where there is only one digit different then there is an
edge connection.)

To find the right n simplexes, choose any vertex then find the other n vertices
which only have one digit different, so that each right simplex set has n + 1
vertices, all of which connect to every other vertex in the set.
The volume V of a regular simplex is:

Where n is the dimension and x is the length of the edges.

Question:
What is the value of edge length x in all n dimensions, where the volume of
the regular simplex equals one?
Answer:

Check: in the case where n = 3.

We know that a regular tetrahedron has volume

where V = 1

Adi polytopes in n space:

Number of vertices p

Vertex order r

where n < 0
(Triangular numbers)

Volume v
(For regular polytopes with edge
lengths x)

Dimension
n

Adi Polytope Number of


vertices p

Vertices
order r

10

15

21

Volume v

28

36

10

45

www.adimath.webs.com

Find the simplex with n regular leg edges that have length x.

Question:
What is the value of edge length x in all n dimensions, where the right simplex with n
regular leg lengths has a volume v that equals one?

Answer:
The volume V of a right simplex with n regular leg length edges is:

Where n is the dimension and x is the length of the leg edges.

Check: in the case where n = 3.

We know that the right tetrahedron with three regular leg edge lengths has volume

where V = 1

Applications And Non Euclidean Geometry


by Adi Cox 29th April 2013
________________________________________________________
A curious thing is that the area of a circle with radius
one has an area of pi. Is this true if a circle is
measured by a unit larger than a galaxy, or some tiny
quantum unit smaller than an atom, I wonder if space is
really that consistantly euclidean.
Non Euclidean geometry is something I was taught at the
Open University and this is a subject I very often find
myself thinking about. I have often thought about
exploring this subject and so here I am writing this
small piece.
Geometry is generally considered to be a pure
mathematical subject but I argue here that really
Eucldean geometry could be seen as a more applied
mathematics because it replicates the space we live in
around us. Whereas Non Euclidean geometry is a litte
more exotic.
Although non Euclidean geometry is easy to find
applications for finding the areas of curved surfaces
like second order quadrics in a real three dimentional
space with equations like the following:
Ax^2 + By^2 + Cz^2 + Dxy + Exz + Fyz
+ Gx + Hy + Iz + J = 0
This world we live in is very much three dimensional. Is
there anything that is not three dimensional in the real
world? Even shadows are projections onto uneven surfaces
with three dimensional irregularity. The truth is that a
two dimensional non Euclidean area needs three
coordinates.
So my final point here is that to take non Euclidean
geometry up another dimension we will be out of this
physical space because we shall require third order
quadrics in a four dimensional space with equations like
the following:
Aw^3 + Bx^3 + Cy^3 + Dz^3
+ Ewxy + Fwxz + Gwyz + Hxyz
+ Iw^2 + Jx^2 + Ky^2 + Lz^2
+ Mwx + Nwy + Owz + Pxy + Qxz + Ryz
+ Sw + Tx + Uy + Vz + W = 0
Three dimensional Geometry in a four dimensinal space is
more abstract and trully a pure mathematics because it
takes us into a mathematical place that is not
immediately representative of the physical world around
us.

Chromogeometry
http://arxiv.org/pdf/0806.3617.pdf
The pdf file above is where I first encountered Chromogeometry which uses the
identity below:
________________________________________________________________
_

(red geometry)^2 + (green geometry)^2 = (blue geometry)^2


(x^2-y^2)^2 + (2xy)^2 = (x^2+y^2)^2
________________________________________________________________
_

A triangle has coordinates u(2,6), v(6,9), w(14,1).

Q is the quadrance = the length of a line squared.

b is blue geometry = Euclidean geometry (x^2 + y^2)


r is red geometry = Hyperbolic geometry (x^2 - y^2)
g is green geometry = Hyperbolic geometry 2(xy)

________________________________________________________________
_

Using blue geometry:

Qb(u,v)=(x2-x1)^2 + (y2-y1)^2
=(6-2)^2 + (9-6)^2
=25

Qb(v,w)=(x2-x1)^2 + (y2-y1)^2
=(14-6)^2 + (1-9)^2
=128

Qb(w,u)=(x2-x1)^2 + (y2-y1)^2
=(2-14)^2 + (6-1)^2
=169

So the line lengths of the triangle are the square roots of the

above results: 5, 11.31370850 and 13


________________________________________________________________
_

Using red geometry:

Qr(u,v)=(x2-x1)^2 - (y2-y1)^2
=(6-2)^2 - (9-6)^2
=7

Qr(v,w)=(x2-x1)^2 - (y2-y1)^2
=(14-6)^2 - (1-9)^2
=0

Qr(w,u)=(x2-x1)^2 - (y2-y1)^2
=(2-14)^2 - (6-1)^2
=119

________________________________________________________________
_

Using green geometry:

Qg(u,v)=2(x2-x1)(y2-y1)
=2(6-2)(9-6)
=24

Qg(v,w)=2(x2-x1)(y2-y1)
=2(14-6)(1-9)
=-128

Qg(w,u)=2(x2-x1)(y2-y1)
=2(2-14)(6-1)
=-120

________________________________________________________________
_

Qr(u,v)^2 + Qg(u,v)^2 = Qb(u,v)^2


49 + 576 = 625

Qr(u,v)^2 + Qg(u,v)^2 = Qb(u,v)^2


0 + 16384 = 16384

Qr(u,v)^2 + Qg(u,v)^2 = Qb(u,v)^2


14161 + 14400 = 28561

Você também pode gostar