Binary
Binary
Decimal System
Number Systems
Every number system has a base, which refers to the number of
possible values each digit can take. Most people are used to the
3 2 8 decimal number system, also known as the base 10 system, where
digits can be any value from 0 to 9. In the decimal system, each
100s 10s 1s digit in a number represents a power of 10. The rightmost digit
(3 x 100) + (2 x 10) + (8 x 1) represents the 1s place (which is 10 0). The digit second from the
right is the 10s place (or 10 1). The next digit over is the 100s place
300 + 20 + 8 (or 102). To compute the value of a number, just multiply the digit
328 in each place by the value of the place, and add the numbers
together.
Binary System
Binary is a number system with base 2, where digits can only be
0 to 1. In this system, each place value in a number represents a
1 1 0 power of 2. The rightmost digit is still the 1s place (which is 20).
The next digit over is the 2s place (equal to 2 1). The next digit over
4s 2s 1s is the 4s place (equal to 2 2), and it would continue on: with the 8s
(1 x 4) + (1 x 2) + (0 x 1) place, the 16s place, the 32s place, etc. To compute the value of a
binary number, just multiply the digit in each place (either 1 or 0)
4+2+0 by the value of the place, and add the numbers together. So 110
6 becomes 1x4 + 1x2 + 0x1 = 4 + 2 + 0 = 6.