What is Binary?

 What is Binary? Numeration System Powers Base Digits 0 And 1
Binary , Base-2 Numbering System

     Numeration system based on powers of 2, in contrast to the familiar decimal system , which is based on powers of 10. In the binary system, only the digits 0 and 1 are used. Thus, the first ten numbers in binary notation, corresponding to the numbers 0,?1,?2,?3,?4,?5,?6,?7,?8, and 9 in decimal notation, are 0,?1,?10,?11,?100,?101,?110,?111,?1000, and 1001. Since each position indicates a specific power of 2, just as the number 342 means (3 × 10 2 ) + (4 × 10 1 ) + (2 × 10 0 ), the decimal equivalent of a base-2 number can be calculated by adding together each digit multiplied by its power of 2; for example, the binary number 1011010 corresponds to (1 × 2 6 ) + (0 × 2 5 ) + (1 × 2 4 ) + (1 × 2 3 ) + (0 × 2 2 ) + (1 × 2 1 ) + (0 × 2 0 ) = 64 + 0 + 16 + 8 + 0 + 2 + 0 = 90 in the decimal system. Binary numbers are sometimes written with a subscript "b" to distinguish them from decimal numbers having the same digits. As with the decimal system, fractions can be represented by digits to the right of the binary point (analogous to the decimal point). A binary number is generally much longer than the decimal equivalent; e.g., the number above, 1011010 b , contains seven digits while its decimal counterpart, 90, contains only two. This is a disadvantage for most ordinary applications but is offset by the greater simplicity of the base-2 system in computer applications. Since only two digits are used, any binary digit, or bit, can be transmitted and recorded electronically simply by the presence or absence of an electrical pulse or current. The great speed of such devices more than compensates for the fact that a given number may contain a large number of digits.

Binary
(Base 2)
Octal
(Base 8)
Decimal
(Base 10)
Hexadecimal
(Base 16)
0000000
0001111
0010222
0011333
0100444
0101555
0110666
0111777
10001088
10011199
10101210A
10111311B
11001412C
11011513D
11101614E
11111715F

More on this subject
Beginner's Help
BUG Club Home

 What is Binary? Numeration System Powers Base Digits 0 And 1