Skip to main content

Section 2.3 Mathematical Equivalence of Binary and Decimal

We have seen in the previous section that binary digits are the natural way to show the states of switches within the computer and that hexadecimal is a convenient way to show the states of up to four switches with only one character. Now we explore some of the mathematical properties of the binary number system and show that it is numerically equivalent to the more familiar decimal (base 10) number system. Showing the mathematical equivalence of the hexadecimal and decimal number systems is left as an exercise for you following this section.

By convention, we use a positional notation when writing numbers. For example, in the decimal number system, the integer \(123\) is taken to mean

\begin{equation} 1 \times 100 + 2 \times 10 + 3 \times 1\label{eq-123a}\tag{2.3.1} \end{equation}

or

\begin{equation} 1 \times 10^2 + 2 \times 10^1 + 3 \times 10^0\label{eq-123b}\tag{2.3.2} \end{equation}

The right-most digit (3 in Equations (2.3.1) and (2.3.2)) is the least significant digit because it “counts” the least in the total value of this number. The left-most digit (1 in this example) is the most significant digit because it “counts” the most in the total value of this number.

The base or radix of the decimal number system is ten. There are ten symbols for representing the digits: 0, 1,…, 9. Moving a digit one place to the left increases its value by a factor of ten, and moving it one place to the right decreases its value by a factor of ten. The positional notation generalizes to any radix, \(r\text{:}\)

\begin{equation} d_{n-1} \times r^{n-1} + d_{n-2} \times r^{n-2} + \ldots d_{1} \times r^{1} + d_{0} \times r^{0}\label{eq-radix}\tag{2.3.3} \end{equation}

where there are \(n\) digits in the number and each \(d_{i} = 0, 1, \ldots, r-1\text{.}\) The radix in the binary number system is 2, so there are only two symbols for representing the digits: \(d_{i} = \binary{0}, \binary{1}\text{.}\) We can specialize Equation (2.3.3) for the binary number system as

\begin{equation} d_{n-1} \times 2^{n-1} + d_{n-2} \times 2^{n-2} + \ldots d_{1} \times 2^{1} + d_{0} \times 2^{0} \label{eq-radix2}\tag{2.3.4} \end{equation}

where there are \(n\) digits in the number and each \(d_{i} = \binary{0}, \binary{1}\text{.}\)

Although we are considering only integers at this point, Equation (2.3.3) does, of course, generalize to fractional values. Simply continue the exponents of the radix, \(r\text{,}\) on to negative values, that is, \(r^{n-1}, r^{n-2},\ldots, r^{1}, r^{0}, r^{-1}, r^{-2},\ldots\) . This will be covered in detail in Chapter 16.

It is very simple to convert from binary to decimal: