Decimal Number System
Decimal Number System
Number System represents value of number with respect to its given base. Based on its Base value,
a number has unique representation and different number systems have different representation of
the same number. For example, Binary, Octal, Decimal and Hexadecimal Number systems are used
in microprocessor programming.
If the Base value of a number system is 10, then it is called Decimal number system which has most
important role in the development of science and technology. This is the weighted (or positional)
number representation, where value of each digit is determined by its position (or their weight) in a
number. This is also known as base-10 number system which has 10 symbols, these are: 0, 1, 2, 3,
4, 5, 6, 7, 8, 9. Position of every digit has a weight which is a power of 10. Each position in the
decimal system is 10 times more significant than the previous position, that means numeric value of
a decimal number is determined by multiplying each digit of the number by the value of the position
in which the digit appears and then adding the products.
Here, right most bit 5 is the least significant bit (LSB) and left most bit 2 is the most significant bit
(MSB).
Here, right most bit 6 is the least significant bit (LSB) and left most bit 2 is the most significant bit
(MSB).
Most Significant Bit (MSB) Decimal Point Least Significant Bit (LSB)
102 101 100 10-1 10-2 10-3
100 10 1 0.1 0.01 0.001
The coefficient aj ranges from 0 to (r-1). Representing real number in base-r is as following below −
Where, a0, a1, ... a(n-1) and an are integer part digits, n is the total number of integer digits. a-1, a-2, ...
and a-m are fractional part digits, m is the total number of fractional digits.
https://www.tutorialspoint.com/decimal-number-system 1/2
8/2/2020 Decimal Number System
The main advantages of Decimal Number System are easy readable, used by humans, and easy to
manipulate.
However, there are some disadvantages, like wastage of space and time. Since digital system (e.g.,
Computers) and hardware is based on binary system (either 0 or 1), so we need to 4 bit space to
store each bit of Decimal number, whereas Hexadecimal number is also needed only 4 bit and
hexadecimal number has more digits than decimal number which is an advantage of Hexadecimal
Number System.
10’s complement of decimal number is 9’s complement of given number plus 1 to the least
significant bit (LSB). For example 10’s complement of decimal number 2005 is (9999 - 2005) + 1 =
7995.
https://www.tutorialspoint.com/decimal-number-system 2/2