Binary number system

Binary number system

The binary number system is exactly like the decimal number system, except the base is 2, instead of 10. We have only two symbols or digits (0 and 1), which can be used in this number system. The largest single digit is 1. Each position in a binary number represents a power of the base 2. Hence in this system, the rightmost position is the units (20) position, the second position from the right is the 2’s (21) position , and proceeding this way we have 4’s ( 22) position, 8’s (2 3) position, .. and so on. Therefore , the decimal equivalent of the binary number 10101 (written as (10101)2 ) is :

(1 x 2 4 ) + (0 x 23) + (1 x 22) + (0 x 21) + (1 x 20) = 16 + 0 + 4 + 0 + 1 = 21

Hence we write 101012 = 2110

Last modified: Tuesday, 8 November 2011, 6:10 AM