Converting Base 10 Integers To Base B

Bases By The Numbers - Base 10 to Base B

When discussing the process of base conversion, a logical place to begin is by learning how to first convert our every-day, standard base 10 integers into their corresponding equivalents in other bases.  We will develop a simple PHP function to do this base 10 integer to base B conversion in arbitrary-precision to any number of digits we wish.

The process of integer base conversion is actually very simple and consists of nothing more than collecting up the remainders of a series of reductive integer divisions, in reverse order of their generation (in right-to-left order), and then fetching their corresponding base B digit symbols from within the digits spectrum used for the conversion.

Here, a reductive integer division means that the resulting integer quotient of the division by the base value replaces the original dividend in preparation for the next cycle, if any.  Each division cycle thus reduces the subsequent numerator (X value) in the sequence of divisions.  For example, the integer division of 13/2 results in the integer quotient 6 (Q=6) and a remainder of 1 (R=1).

The process of converting the base 10 integer 13 into binary (base 2):

Let:
X = Base 10 integer to be converted
B = Alternative base into which to convert X
Q = Integer quotient of integer division X/B
R = Integer remainder of integer division X/B

  1. Starting with base 10 integer X, we divide it by the base (B), keeping only the integer quotient (Q) and the remainder (R) as demonstrated below.

    Starting with ... X=13 and B=2:

    $Q = bcdiv($X, $B);
    $R = bcmod($X, $B);
    $X = $Q;



 X / B = Q, R
13 / 2 = 6, 1
 6 / 2 = 3, 0
 3 / 2 = 1, 1
 1 / 2 = 0, 1

The following random example shows the base 10 integer,  X=39917998,  expressed in its corresponding equivalents in all bases from 2 to 36.

Base 10 value X = 39917998

B   The same numerical value expressed in base B
2   10011000010001100110101110
3   2210010001012101
4   2120101212232
5   40204333443
6   3543325314
7   663204001
8   230214656
9   83101171
10  39917998
11  20594A8A
12  1145083A
13  8368423
14  5431538
15  378784D
16  26119AE
17  1B1FG99
18  1324BCA
19  G25F35
20  C99EJI
21  9G5701
22  7G8J4A
23  64EJ83
24  507E1M
25  424IJN
26  39947G
27  2L315A
28  28QBMM
29  1RCKQK
30  1J8D9S
31  1C6SUB
32  1626DE
33  10LPLA
34  TTL4Q
35  QL148
36  NRKXA

The above example table demonstrates how the same numerical value can be expressed in several base systems.  

The table below was derived by randomly selecting one of the conversions from within the table above, in this case base 6, to demonstrate how its individual digits were derived by converting the base 10 integer, X=39917998, into base 6, one digit at a time, using a series of successive integer divisions and reductions and converting the sequential remainders into base 6 digit symbols.  The same process can used with any base to render EXACT arbitrary-precision base 10 integer to base B conversions to any number of digits.

X          /Base  Remainder  Symbol
39917998   /6     4          4
6652999    /6     1          1
1108833    /6     3          3
184805     /6     5          5
30800      /6     2          2
5133       /6     3          3
855        /6     3          3
142        /6     4          4
23         /6     5          5
3          /6     3          3


39917998 in base 10
=
3543325314 in base 6



The Number of Digits in a Base B Integer

It is very interesting to note that we do not have to actually perform any conversion of X to base B to simply predict how many base B digits the result would have if we did!  For example, we may not know what the base 10 integer 39917998 looks like when expressed in base 6, but we can still predict that it consists of 10 base 6 digits by using this simple logarithmic formula:


Ydigits = 1 + floor(log(X) / log(B))

In PHP, this formula can be written in very similar form as:

$Ydigits = 1 + floor(log($X) / log($B));

In this case, the log(x) function refers to the natural logarithm.
However, base 10 or any other logarithmic base could be used.



EXAMPLE: For Base 10 Integer X Converted Into Base B Integer Y:

Given base 10 integer, X=39917998, to be converted to base B=4:
Base 4 integer equivalent Y = 2120101212232

Base 4 digits in Y = 1 + floor(log(39917998) / log(4)) = 13

The above base conversion table for X = 39917998, is reproduced again below, with this version of the table including the counts of the digits (in parentheses).

Base 10 value X = 39917998

B   Same numerical value expressed in base B (with digits count)
2   10011000010001100110101110 (26)
3   2210010001012101 (16)
4   2120101212232 (13)
5   40204333443 (11)
6   3543325314 (10)
7   663204001 (9)
8   230214656 (9)
9   83101171 (8)
10  39917998 (8)
11  20594A8A (8)
12  1145083A (8)
13  8368423 (7)
14  5431538 (7)
15  378784D (7)
16  26119AE (7)
17  1B1FG99 (7)
18  1324BCA (7)
19  G25F35 (6)
20  C99EJI (6)
21  9G5701 (6)
22  7G8J4A (6)
23  64EJ83 (6)
24  507E1M (6)
25  424IJN (6)
26  39947G (6)
27  2L315A (6)
28  28QBMM (6)
29  1RCKQK (6)
30  1J8D9S (6)
31  1C6SUB (6)
32  1626DE (6)
33  10LPLA (6)
34  TTL4Q (5)
35  QL148 (5)
36  NRKXA (5)

For Higher Bases

For the higher bases, (greater than 10), we traditionally use the sequential (not case sensitive) letters of the English alphabet as extended digit symbols, such as the letters "A" to "F", as used in hexadecimal numbers.  Normally, there is no single digit with a value of 15, so we use the letter "F" to represent it.  When dividing by 16 and the remainder is 15, we use the symbol "F" to represent that digit value in hexadecimal and higher bases.  For numbers expressed in any base from 2 to 10, the digit symbols are the same as the digits themselves.  We only apply the sequential letters to the higher bases when we run out of normal digits to represent their values, that is, base 11 and above.


Below is a simple PHP function designed to perform the complete, exact arbitrary-precision base 10 integer to base B conversion process.  Note that since we are doing arbitrary-precision computations, the function can handle integer base conversions extending out to hundreds or even thousands of digits with EXACT accuracy.

 function bcBase_10_Int_To_Base_B ($X10, $B)
{
 $X = $X10;
 if (bccomp($X, 0) == 0) {return "0";}

 $DigitsSpectrum = substr("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ",0,$B);

 $XB = "";

  while (bccomp($X, 0) > 0)
 {
  $XBDigitSymbol = substr($DigitsSpectrum, bcmod($X,$B),1);
  $XB = substr($DigitsSpectrum, $XBDigitSymbol . $XB;
  $X = bcdiv($X,$B);
 }
 return $XB;
}

In the above function, to generate the specific digits spectrum string for any given base from B=2 to B=36, we use the following code line:

$DigitsSpectrum = substr("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ",0,$B);

Since our standard base 10 digits spectrum consists of all the numerical digits from 0 to 9, the base 10 digits spectrum string takes the form, "0123456789".

If we were converting into binary (B=2), then the binary digits spectrum string would only consist of the 2 digits, "01".

If we were converting into octal (B=8), the digits spectrum would take the form, "01234567".

If we were converting into hexadecimal (B=16), the hexadecimal digits spectrum string would take the form, "0123456789ABCDEF".

In the case of B=24, the digits spectrum would take the form, "0123456789ABCDEFGHIJKLMN", and so on.

The 0-based position index of a digit in the digits spectrum corresponds to the value of the remainder of the integer division of the current base 10 integer, X, by the current base (B).  This division is computed and the corresponding base B digit symbol extracted from the digits spectrum by the line:

$XBDigitSymbol = substr($DigitsSpectrum, bcmod($X, $B), 1);

An integer division here means that both dividend (X) and divisor (B) are integers and that any fractional part is dropped without rounding.  The division of 127/16 would result in exactly 7, and not 7.9375, as in floating point arithmetic nor rounded up to 8.  Any decimal fraction that results from the division is simply ignored and dropped without exception.

Within the function, the value of the remainder of the integer division, X/B, is computed by the statement:

bcmod($X,$B)

This value is the index of the base B digit symbol within the digits spectrum.

A simple test call to the above function might resemble the following:
$X = "39917998";
$B = 28;

print bcBase_10_Int_To_Base_B($X, $B);

// The printed result should be:
   28QBMM

Even Higher Bases

For Base 2 to Base 36

As previously defined above, the case insensitive digits spectrum (up to base 36) is:
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
=
"0123456789abcdefghijklmnopqrstuvwxyz"

For Bases > 36

If we allow case sensitivity, where lowercase "a" is NOT identical to uppercase "A", and both symbols represent entirely different values, then we can use the uppercase letters to extend the digits spectrum by yet another 26 letters, giving us a CASE SENSITIVE digits spectrum consisting of 62 unique digits.

The case sensitive base 62 digits spectrum is:
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"

Note that the lowercase letters from "a" to "f" must be used to represent hexadecimal values under this convention, since the uppercase letters, "A" to "F", are NOT equivalent symbols here.

Allowing case sensitivity this way, lets us handle bases from 2 to 62.  Of course, we could extend the digit symbols indefinitely to represent even higher bases.

SPECIAL NOTE:
  • When displaying numbers in higher bases, we need to be careful which font we choose to display or print the digit symbols.  For example, care must be taken so that digits like "0" (zero) and "1" (one) are not mistaken for letters, like "O" or the lower case "L" or uppercase "I".

    Since in some font styles, certain numerical digits can closely resemble certain letters, we need to read such higher-base numbers carefully, and a well-chosen alpha-numeric font can help reduce this kind of confusion. 

    To avoid this problem, either the 'Consolas' or 'Inconsolata' font is recomended because they show a slash through the digit zero (0) which easily distinguishes the digit from the letter 'O' when higher bases are used.  For those who do not have either font or something similar, they are freely available on the Internet.




Jay Tanner - 2024