-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddition_Table
More file actions
48 lines (40 loc) · 1.31 KB
/
Addition_Table
File metadata and controls
48 lines (40 loc) · 1.31 KB
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
43
44
45
46
47
Hello
below is a table where
if we add the first digit on the first row
every time with a second number in a random row
we will take the result digit.
If the result digit bypass the range of [0-1]
the result is the last digit of the addition itself
here is the table
---> 1 5 7 8 4 2 0
2 1 5 7 8 4 1
3 6 3 6 3 6 1
4 2 1 5 7 8 2
5 7 8 4 2 1 2
6 3 6 3 6 3 3
7 8 4 2 4 5 3
8 4 2 1 5 7 4
9 9 9 9 9 9 4
--> 0 0/9 0/9 0/9 0/9 0/9 5
1 5 7 8 4 2 5
2 1 5 7 8 4 6
3 6 3 6 3 6 6
4 2 1 5 7 8 7
5 7 8 4 2 1 7
6 3 6 3 6 3 8
7 8 4 2 1 5 8
8 4 2 1 5 7 9
9 0/9 0/9 0/9 0/9 0/9 9
---> 3 3 3
3 6 9
6 9 2
---> 6 6 6
3 6 9
9 2 5
---> 9 9 9 9 eg 9
3 6 9 x 5
2 5 9 x-1 4
each first row if kept stable
by combination with a number of others rows
can produce an addition result or the last digit
of the overall result