You have been using the decimal number system for so long that you probably no longer often stop to think about what the individual digits mean. You see 134 and recognize it as โone hundred thirty-fourโ. 134 has that value because each digit in the number represents a multiple of some power of 10:
Notice that since each digit can only be a 1 or a 0, we donโt actually need to multiply. A 1 indicates we have the value for that column and a 0 indicates we donโt. So 101 in binary simply means 4 + 1 = 5 because the first 1 is in the โfoursโ column and the second 1 is in the โonesโ column.
Because things can get confusing when we are talking about different bases (does โ101โ mean the binary number that represents 5 or the decimal number 101?), we often use a subscript to indicate the base of the number being represented. Thus \(101_{10}\) indicates the decimal number 101 and \(101_{2}\) indicates a binary number with the value 5.
If you think about it for a minute, you can probably see that the largest value that we can represent with 3 binary digits is 7. With three decimal digits, we can express values up to 999. Binary numbers take more digits to express large numbers.
With 8 bits, we can express values up to 255; to decode them, we need to add more columns to our table - each new column will be twice the value of the last column. Here is what \(10110011_{2}\) represents: