Tables and cycles

Multiplication and division tables (B9)

B9 (mod 9) is the digital root: reduce any number to a single digit from 1 to 9 by adding its digits until one remains (e.g. 14 → 1+4 = 5). In decimal, results grow (2, 4, 6, 8…) and patterns are hidden; in B9, values stay between 1 and 9 and cycles become clear — the same sequence repeats every 9 terms.

Binary / Ternary

Binary sequences (×2 each row) and ternary (+3 each row). In decimal the numbers blow up; in B9 (digital root mod 9) they reduce to 1–9 and the cycles become obvious.

Binary

5 columns starting with 1, 3, 5, 7, 9 — each value doubles every row. B9 = digital root.

1B9 3B9 5B9 7B9 9B9
1 3 5 7 9
2 6 10 14 18
4 12 20 28 36
8 24 40 56 72
16 48 80 112 144
32 96 160 224 288
64 192 320 448 576
128 384 640 896 1152
256 768 1280 1792 2304
512 1536 2560 3584 4608
1024 3072 5120 7168 9216
2048 6144 10240 14336 18432
4096 12288 20480 28672 36864
8192 24576 40960 57344 73728
16384 49152 81920 114688 147456
32768 98304 163840 229376 294912
65536 196608 327680 458752 589824
131072 393216 655360 917504 1179648

Ternary

3 columns starting with 1, 2, 3 — add 3 each row. B9 = digital root.

1B9 2B9 3B9
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 48
49 50 51
52 53 54
55 56 57
58 59 60
61 62 63
64 65 66
67 68 69
70 71 72
73 74 75
76 77 78
79 80 81
82 83 84
85 86 87
88 89 90
91 92 93
94 95 96
97 98 99
100 101 102
103 104 105
106 107 108