Non-Positional Number System
Non-Positional Number System
A number is a mathematical object used to count, label and measure. A number system is a systematic way to represent numbers.
The number system we use in our day to day life is the decimal number system that uses ten symbols or digits. Similarly, there
are other number systems. Each has its own symbols and method for constructing a number. A number system has a unique base,
which depends upon the number of symbols. The number of symbols used in a number system is called base or radix of a
number system.
Non-positional numeral systems are systems of numeration in which the placement of a numeral digit does not related to its
position in the numeral. In Non-positional system, the symbols such as I for 1, II for 2, etc. So, each symbol represents the same
value regardless of its position in a number. To find the value of number, one must count the number of symbols present in the
number. Since it is very difficult to perform arithmetic with such a number system, positional number systems were developed.
A positional (numeral) system is a system for representation of numbers by an ordered set of numerals symbols (called digits)
More generally, a positional system is a numeral system in which the contribution of a digit to the value of a number is the
product of the value of the digit by a factor determined by the position of the digit.
Difference: In non-positional number system, each symbol represents a number with its own place value. 3. Example: Roman
number system where I for 1, II for 2 etc. In Roman numerals, for example, the symbol V always means "five" whether it
occurs last in a numeral string (e.g., XXV), next to last (XXVI), third from last (XXVII) or fourth from last (XXVIII). By
contrast the symbol 5 in base 10 can mean "five," "fifty," "five hundred," etc., (as well as "fifth," "fiftieth" and so on) depending
on its placement in the numeral string. In positional number system, each system has a value that relates to the number directly
next to it.
A number system which uses only two symbols 0 and 1 to form a number is called binary number system. Base of this number
system is 2. Each digit of a binary number is called bit. A bit stands for binary digit. The binary number system is also a
positional number system where place value of each binary digit is power of 2. Consider an example (1101)2
Number conversions
There are different types of number conversions like decimal to binary, binary to decimal, decimal to octal etc.
The method of converting decimal number to binary number is by repeated division. In this method the decimal number is
successively divided by 2 and the remainders are recorded. The binary equivalent is obtained by grouping all the remainders,
with the last remainder being the Most Significant Bit (MSB) and first remainder being the Least Significant Bit (LSB). In all
these cases the remainders will be either 0 or 1 (binary digit).
Hint: Binary equivalent of an odd decimal number ends with 1 and binary of even decimal number ends with zero.
To convert a fractional decimal number to binary, we use the method of repeated multiplication by 2. At first the decimal fraction
is multiplied by 2. The integer part of the answer will be the MSB of binary fraction. Again the fractional part of the answer is
multiplied by 2 to obtain the next significant bit of binary fraction. The procedure is continued till the fractional part of product is
zero or a desired precision is obtained.
A binary fraction number can be converted into its decimal equivalent by summing up the product of each bit and its weight.
Weights of binary fractions are negative powers of 2 (2-1, 2-2, 2-3, ...) for the digits after the binary point.
2.Octal to decimal conversion
An octal number can be converted into its decimal equivalent by summing up the product of each octal digit and its weight.
Weights are some powers of 8 (80, 81, 82, 83, ...).