7907_overview of Numbers Bases
7907_overview of Numbers Bases
Binary System
Binary is the simplest kind of number system that uses only two digits of 0 and 1. By using these
digits computational problems can be solved by machines because in digital electronics a
transistor is used in two states. Those two states can be represented by 0 and 1. That is why this
number system is the most preferred in modern computer engineer, networking and
communication specialists, and other professionals.
Decimal System
Decimal number system is the most commonly used and the most familiar one to the general
public. It is also known as Base 10 numbering system since it is based on 10 following symbols:
0, 1, 2, 3, 4, 5, 6, 7,8and 9. In decimal system, every digit has its own position as well as the
decimal point. I.e. the number 356.74 has 4 in the Hundredths position, 7 in the Tenths position,
6 in the Units position, 5 in the Tens Position, and 3 in the Hundreds position. Decimal number
system is also one of the oldest known numeral system, which is historically related to Hindu-
Arabic numeral system
20 10 = 101100
34510 = 1000001012
OCTAL NUMBERS SYSTEM
The octal system has a base of eight(8). That is, it involves 8 absolute numbers which range from 0 to 7
(0,1,2,3,4,5,6,7)and has positional values which are powers of 8.
Below is the relationship of the octal system with binary and decimal.
DECIMAL OCTAL BINARY
1 1 1
2 2 10
3 3 11
4 4 100
5 5 101
6 6 110
7 7 111
8 10 1000
9 11 1001
10 12 1010
CONVERSION FROM OCTAL DECIMAL
Conversion from octal to decimal system is more or less like the conversion from binary to decimal. First,
determine the positional value. Secondly, each digit of the octal number is multiplied by eight (8)raised to the
power of the position.
Example:
Convert 17078 to decimal (10)
1707 = 13 72 01 70
1 x 83+ 7 x 82 + 0 x 8 + 7 x 80
512 + 448 + 0 + 7 = 96710
17078 = 96710
Convert 345 to base 8
8 345
8 43 R1
8 5 R3
8 0 R 5
34510 = 5318
HEXADECIMAL NUMBER SYSTEM
The hexadecimal number system has base of 16 absolute numbers. It is represented by values
(0,1,2,3,4,6,7,8,9,A,B,C,D,E,F) and has positional values which are in the powers of 16.
The table below shows the relationship between the four common number systems.
Decimal Octal Binary hexadecimal
0 0 0 0
1 1 1 1
2 2 2 2
3 3 11 3
4 4 100 4
5 5 101 5
6 6 110 6
7 7 111 7
8 10 1000 8
9 11 1001 9
10 12 1010 A
11 13 1011 B
12 14 1100 C
13 15 1101 D
14 16 1110 E
15 17 1111 F
16 20 10000 10
17 21 10001 11
18 22 10010 12
19 13 10011 13
20 24 10100 14