In the late 1930s, Claude Shannon showed that by using switches which were closed for "true" and open for "false," it was possible to carry out logical operations by assigning the number 1 to "true" and 0 for "false."
This information encoding system is called binary. It's the form of encoding that allows computers to run. Binary uses two states (represented by the digits 0 and 1) to encode information.
Since 2000 BCE, humans have counted using 10 digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9). This is called "decimal base" (or base 10). However, older civilisations, and even some current applications, used and still use other number bases:
The term bit (shortened to a lowercase b) means "binary digit", meaning 0 or 1 in binary numbering. It is the smallest unit of information which can be manipulated by a digital machine. It is possible to represent this binary information:
Therefore, a bit can be set to one of two states: either 1 or 0. With two bits, you can have four different states (2*2):
| 0 | 0 |
| 0 | 1 |
| 1 | 0 |
| 1 | 1 |
With 3 bits, you can have eight different states (2*2*2):
| 3-bit binary value | Decimal value |
|---|---|
| 000 | 0 |
| 001 | 1 |
| 010 | 2 |
| 011 | 3 |
| 100 | 4 |
| 101 | 5 |
| 110 | 6 |
| 111 | 7 |
For a group of n bits, it is possible to represent 2n values
In a binary number, a bit's value, depends on its position, starting from the right. Like tens, hundreds, and thousands in a decimal number, a bit's value grows by a power of two as it goes from right to left, as shown in the following chart:
| Binary number | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|---|---|---|---|---|---|---|---|---|
| value | 27 = 128 | 26 = 64 | 25 = 32 | 24 = 16 | 23 = 8 | 22 = 4 | 21 = 2 | 20 = 1 |
To convert a binary string into a decimal number, multiply the value of each bit by its weight, then add together the products. Therefore, the binary string 0101, in decimal, comes to:
23x0 + 22x1 + 21x0 + 20x1
= 8x0 + 4x1 + 2x0 + 1x1
= 5
The byte (shortened to uppercase B) is a unit of information composed of 8 bits. It can be used to store, among other things, a character, such as a letter or number.
Grouping numbers in clusters of 8 makes them easier to read, much as grouping numbers in threes helps to make thousands clearer when working in base-10. For example, the number "1,256,245" is easier to read than "1256245".
A 16-bit unit of information is usually called a word.
A 32-bit unit of information is called a double word (sometimes called a dword).
For a byte, the smallest number possible is 0 (represented by eight zeroes, 00000000), and the largest is 255 (represented by eight ones, 11111111), making for 256 different possible values.
| 27 =128 | 26 =64 | 25 =32 | 24 =16 | 23 =8 | 22 =4 | 21 =2 | 20 =1 |
| 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
For a long time, computer science was unusual it that it used different values for its units than metric system (also called the International System). Computer users would often learn that 1 kilobyte was made up of 1024 bytes. For this reason, in December 1998, the International Electrotechnical Commission weighed in on the issue (http://physics.nist.gov/cuu/Units/binary.html). Here are the IEC's standardised units:
![]() |
Warning! Some software (and even some operating systems) still use the pre-1998 notation, which is as follows:
|
The IEC has also defined binary kilo (kibi), binary mega (mebi), binary giga (gibi), and binary tera (tebi).
They are defined as:
In some languages, such as French and Finnish, the word for byte does not begin with "b", but the international community, on the whole, generally prefers the English term "byte." This gives the following notations for kilobyte, megabyte, gigabyte, and terabyte:
kB, MB, GB, TB
![]() |
Note the use of an uppercase B to distinguish Byte from bit. |
This is a screenshot from the software HTTrack,the most popular offline web browser, showing how this notation is used:
Simple arithemtic operations such as addition, subtraction, and multiplication are easily performed in binary.
Addition in binary follows the same rules as in decimal:
Start by adding the lowest-valued bits (those on the right) and carry the value over to the next place when the sum of two bits in the same position is greater than the largest value of the unit (in binary: 1). This value is then carried over to the bit in the next position.
For example:
| 0 | 1 | 1 | 0 | 1 | |
| + | 0 | 1 | 1 | 1 | 0 |
| - | - | - | - | - | - |
| 1 | 1 | 0 | 1 | 1 |
The multiplication table in binary is simple:
Multiplication is performed by calculating a partial product for each multiplier (only the non-zero bits will give a non-zero result) When the bit of the multiplier is zero, the partial product is null; when it is equal to one, the partial product is formed from the multiplicand, shifted X places, where X is equal to the weight of the multiplier bit.
For example:
| 0 | 1 | 0 | 1 multiplicand | ||
| x | 0 | 0 | 1 | 0 multiplier | |
| - | - | - | - | - | - |
| 0 | 0 | 0 | 0 | ||
| 0 | 1 | 0 | 1 | ||
| 0 | 0 | 0 | 0 | ||
| - | - | - | - | - | - |
| 0 | 1 | 0 | 1 | 0 |
Results for
Results for
Results for
Results for
Results for