| Topic #1 | Introduction & Summary for this Section |
| Topic #2 | { Divisibility by [ 3 ] } for the { Base-10 Format } |
| Topic #3 | { Divisibility by [ 3 ] } for the { Binary Format } |
| Topic #4 | { Divisibility by [ 3 ] } for the { Odd-On-Odd Format } |
| Topic #5 | Moving-on towards { Quad / Base-4 } |
| Topic #6 | Let's try { DDivisibility by [ 233 ] } |
In this Section , we attempt to determine whether a { number } is divisible by [ 3 ] , approaching from :
In the last of these , we were able to move-in on a { Binary Code } from-left-to-right .
Whenever we wish to determine if a { number } , in { Base-10 Format } , is divisible by [ 3 ] ,
and if it is , then the { number } is divisible by [ 3 ] .
A quick example here for the number [ 246,813,579 ] :
And [ 45 ] is divisible by [ 3 ] , so that [ 246,813, 579 ] is also divisible by [ 3 ] .
Let us briefly explain why this is so .
But let us first mark-off the digits as [ Digit #1 ] , [ Digit #2 ] , [ Digit #3 ] and so-on-and-so-forth ,
as per this diagram below :

And we note that the { unit-value } for each of the digits is always congruent to [ 1 mod 3 ] ,
| Position of Digit |
Unit-Value of Digit |
Divisibility by [ 3 ] |
|---|---|---|
| #1 | 1 | 1 mod 3 |
| #2 | 10 | 1 mod 3 |
| #3 | 100 | 1 mod 3 |
| #4 | 1,000 | 1 mod 3 |
| #5 | 10,000 | 1 mod 3 |
| #6 | 100,000 | 1 mod 3 |
| #7 | 1,000,000 | 1 mod 3 |
| #8 | 10,000,000 | 1 mod 3 |
| #9 | 100,000,000 | 1 mod 3 |
Let us take { Digit #4 } as an example , and this { Digit } carries a [ unit-value ] of [ 1,000 ] :
so that :
And that is to say :
is congruent to { [ 2 + 4 + 6 + 8 + 1 + 3 + 5 + 7 + 9 ] mod 3 } .
Let us now attempt to develop a procedure to determine whether a { number } , in { binary format } , is divisible by [ 3 ] .
And we start-off , again , by marking-off the digits as [ Digit #1 ] , [ Digit #2 ] , [ Digit #3 ] and so-on-and-so-forth ,
as per this diagram below :

And we note that the { unit-value } for each of the digits is always :
as per this table below :
| Position of Digit |
Unit-Value of Digit |
Divisibility by [ 3 ] |
|---|---|---|
| #1 | 1 | 1 mod 3 |
| #2 | 2 | 2 mod 3 |
| #3 | 4 | 1 mod 3 |
| #4 | 8 | 2 mod 3 |
| #5 | 16 | 1 mod 3 |
| #6 | 32 | 2 mod 3 |
| #7 | 64 | 1 mod 3 |
| #8 | 128 | 2 mod 3 |
| #9 | 256 | 1 mod 3 |
Our proposal here for the procedure , based on the same logical sequence above for { Base-10 } , is then :
If the [ Adjusted-Sum ] is divisible by [ 3 ] , then the { number } is also divisible by [ 3 ] ;
And the 'adjustment' here is based on applying different 'weights' :
A quick example here for the number [ 441 ] , as shown in the diagram , above :
= 1 + 0 + 1 + 0 + 1 = 3
= 1 + 1 + 1 + 0 = 3
Since [ 9 ] is divisible by [ 3 ] , the number [ 441 ] is also divisible by [ 3 ] .
Let us now attempt to develop a procedure to determine whether a { number } , in the { Odd-On-Odd Format } , is divisible by [ 3 ] .
But let us first set up three (3) { base numbers } to start-off our investigation here :
as per this set of 3 diagrams below :

Let us now add a set of { 5 red-color balls } to-the-right of each of these 3 { base numbers } ,



Let us now make 3 observations on this { Adding-Red-After-Red System } :
Let us now add a set of { 5 blue-color balls } to-the-right of each of these 3 { base numbers } ,



Let us now make 3 observations on this { Adding-Blue-After-Blue System } :
Let us take a quick application of these resultant rules on the example { N = 441 } , as shown below :

We always start-off with the very-first { red-color ball } on-the-left , which always gives us the number [ 3 ] ,
Thus , the number [ 441 ] is divisible by [ 3 ] .
But before we leave here , let us also make this observation , in preparartion for the next { Topic } below :
as per this set of 2 tables below .
| Start-Off Value |
Pair of color-balls added |
Resultant Value |
|---|---|---|
| 0 mod 3 | ![]() |
0 mod 3 |
| 1 mod 3 | ![]() |
1 mod 3 |
| 2 mod 3 | ![]() |
2 mod 3 |
| Start-Off Value |
Pair of color-balls added |
Resultant Value |
|---|---|---|
| 0 mod 3 | ![]() |
0 mod 3 |
| 1 mod 3 | ![]() |
1 mod 3 |
| 2 mod 3 | ![]() |
2 mod 3 |
Let us now investigate what happens where we add a set of { 2 color-balls of different colors } .
For the { Red-color-ball / Blue-color-ball Combination } :
or ,
yielding :
Since ( [ 4 * { Start-Off Value } ] mod 3 ) is always congruent to ( [ 1 * { Start-Off Value } ] mod 3 ) ,
the above equation then becomes :
We then have this summary table below for the { Red-Blue Combination } :
| Start-Off Value |
Pair of color-balls added |
Resultant Value |
|---|---|---|
| 0 mod 3 | ![]() |
1 mod 3 |
| 1 mod 3 | ![]() |
2 mod 3 |
| 2 mod 3 | ![]() |
0 mod 3 |
For the { Blue-color-ball / Red-color-ball Combination } :
or ,
yielding :
Again , since ( [ 4 * { Start-Off Value } ] mod 3 ) is always congruent to ( [ 1 * { Start-Off Value } ] mod 3 ) ,
the above equation then becomes :
We then have this summary table below for the { Blue-Red Combination } :
| Start-Off Value |
Pair of color-balls added |
Resultant Value |
|---|---|---|
| 0 mod 3 | ![]() |
2 mod 3 |
| 1 mod 3 | ![]() |
0 mod 3 |
| 2 mod 3 | ![]() |
1 mod 3 |
Let us now summarize the actions for adding a set of { 2 color-balls } :
: the value remains the same for the { red-red combination } ,
: add [ 1 ] to the value for the { red-blue combination } ,
: the value remains the same for the { blue-blue combination } ,
: add [ 2 ] to the value for the { blue-red combination } .
Let us now look at a quick application to the number [ 441 ] , as follows :
Again , we always start-off with the very-first { red-color ball } on-the-left , which always gives us the number [ 3 ] ,
And [ 441 ] is therefore divisble by [ 3 ] .
It is then recognized that this { adding pairs of color-balls } system does move us from a [ binary / base-2 ] evaluation scheme to a [ quad / base-4 ] evaluation scheme .
While the reader may now wish to try divisibility by [ 5 ] , [ 7 ] , [ 11 ] , [ 13 ] , etc. ,
let us now take a look at the number [ 233 ] , arising from the { Fermat Little Theorem } ,
The number [ 233 ] is a { prime factor } of the Mersenne Number [ 2^29 - 1 ] :
and [ 2^29 ] , i.e. [ 536,879,912 ] , is congruent to :
Let us now look at the { unit-values } for the digits in [ base-233 ] :
| Position of Digit |
Unit-Value of Digit |
Divisibility by [ 233 ] |
Position of Digit |
Unit-Value of Digit |
Divisibility by [ 233 ] |
Position of Digit |
Unit-Value of Digit |
Divisibility by [ 233 ] |
||
|---|---|---|---|---|---|---|---|---|---|---|
| #1 | 1 | 1 mod 233 | #11 | 1,024 | 92 mod 233 | #21 | 1,048,576 | 76 mod 233 | ||
| #2 | 2 | 2 mod 233 | #12 | 2,048 | 184 mod 233 | #22 | 2,097,152 | 152 mod 233 | ||
| #3 | 4 | 4 mod 233 | #13 | 4,096 | 135 mod 233 | #23 | 4,194,304 | 71 mod 233 | ||
| #4 | 8 | 8 mod 233 | #14 | 8,192 | 37 mod 233 | #24 | 8,388,608 | 142 mod 233 | ||
| #5 | 16 | 16 mod 233 | #15 | 16,384 | 74 mod 233 | #25 | 16,777,216 | 51 mod 233 | ||
| #6 | 32 | 32 mod 233 | #16 | 32,768 | 148 mod 233 | #26 | 33,554,432 | 102 mod 233 | ||
| #7 | 64 | 64 mod 233 | #17 | 65,536 | 63 mod 233 | #27 | 67,108,864 | 204 mod 233 | ||
| #8 | 128 | 128 mod 233 | #18 | 131,072 | 126 mod 233 | #28 | 134,217,728 | 175 mod 233 | ||
| #9 | 256 | 23 mod 233 | #19 | 262,144 | 19 mod 233 | #29 | 268,435,456 | 117 mod 233 | ||
| #10 | 512 | 46 mod 233 | #20 | 524,288 | 38 mod 233 | #30 | 536,870,912 | 1 mod 233 |
We see here that the { unit-value } of [ 1 ] repeats itself at { Digit #30 } ,
and correspondingly only 29 'weights' & ( groups / sub-totals ) to be dealt-with .
This then represents a trememdous savings from the possible full-load of '232' .
Another number , [ 178,481 ] , is also interesting because it is a { prime factor } of the Mersenne Number [ 2^23 - 1 ] :
and [ 2^23 ] , i.e. [ 8,388,608 ] , is congruent to :
And because of this , { base-178,481 } has :
and correspondingly only 23 'weights' & ( groups / sub-totals ) to be dealt-with .
A really huge savings here , from the possible full-load of '178,480' .
WHEW !