Number system conversion
As we are dealing with the electronic system and digital system in our daily life, we should be aware of the different number system conversion. There are different ways to convert one number system to the other. Take a look at how it is computed.
Converting a decimal number to any number system
A decimal number has two parts, integer and fractional part. The integer part is converted by successive division method and the fractional part is converted by successive multiplication method.
In successive division method,
- Divide the integer part of the given decimal number by desired base number, store the quotient(Q) and the remainder(R).
- Consider the quotient(Q) as the new decimal number and repeat the step 1 until the quotient(Q) becomes 0.
- List the remainder in the reverse order to get the desired output.
In successive multiplication method,
- Multiply the fractional part of the given decimal number by the desired base number to get a decimal number with integer part and fractional part.
- Store the integer part of the product as Integer value and the factional part as the new fractional part.
- Repeat the step 1 and 2 until the fractional part of the product becomes 0 or until you obtained the necessary digits.
- List the carries downwards to get the desired output.
Example 1: Decimal to Binary number conversion
Convert (23.12)10 to a binary number.
Solution.
Integer part conversion is done by successive division method.
For Integer part, we get, (23)10 = (10111)2
Fractional part conversion is done by successive multiplication method.
For Fractional part, we get, (0.12)10 = (0.0001)2
The solution for the given decimal number (23.12)10 = (10111.0001)2
Example 2: Decimal to Octal number conversion
Convert (263.87)10 to octal number.
Solution.
Integer part conversion is done by successive division method.
For Integer part, we get, (263)10 = (407)8
Fractional part conversion is done by successive multiplication method.
For Fractional part, we get, (0.87)10 = (0.6753)8
The solution for the given decimal number (263.87)10 = (407.6753)8
Example 3: Decimal to Hexadecimal number conversion
Convert (4356.763)10 to hexadecimal number.
Solution.
Integer part conversion is done by successive division method.
For Integer part, we get, (4356)10 = (1104)16
Fractional part conversion is done by successive multiplication method.
For Fractional part, we get, (0.763)10 = (0.C353)16
The solution for the given decimal number (4356.763)10 = (1104.C353)16
Binary to Octal Number conversion
- For this number system conversion, the base for binary number system is 2 and the base for octal number system is 8.
- The base for octal number is the third power of the base for binary number.
- So, group 3 bits of binary number, starting from LSB for integer part and start from MSB for fractional part. Add 0 at the end, if required.
- Write equivalent octal number for each group of 3 bits, to get its octal number.
Example: Convert (10100110.1101)2 to its octal equivalent.
Solution.
In the given binary number, by grouping 3 bits starting from LSB for the integer part, we get 110, 100, 010. Similarly, grouping 3 bits starting from MSB for fractional part, we get 110, 100.
For the grouped bits, write the equivalent octal numbers to get the value. (Refer the relation between the different number system)
Thus the obtained octal number for (10100110.1101)2 is (246.64)8.
Octal to Binary Number conversion
For this conversion, perform the reverse process of binary to octal conversion. That is, each digit of the given octal number is individually converted into its binary equivalent to get the desired value. Let’s look at an example.
Example: Convert the octal number (242.35)8 to its binary equivalent.
Solution. For each digit of the given octal number, write its binary equivalent to get the desired value.
Thus the obtained binary number for (242.35)8 is (10100010.011101)2.
Binary to Hexadecimal Number conversion
- For this number system conversion, the base for the binary number system is 2 and the base for the Hexadecimal number system is 16.
- The base for the hexadecimal number is the fourth power of the base for binary number.
- So, group 4 bits of a binary number, starting from LSB for the integer part and start from MSB for the fractional part. Add 0 at the end, if required.
- Write an equivalent hexadecimal number for each group of 4 bits, to get the hexadecimal number.
Example: Convert the binary number(1010011011.1101001)2 to its hexadecimal equivalent.
Solution.
In the given binary number, by grouping 4 bits starting from LSB for the integer part, we get 1011, 1001, 0010. Similarly, grouping 3 bits starting from MSB for fractional part, we get 1101, 0010.
For the grouped bits, write the equivalent hexadecimal numbers to get the value. (Refer the relation between the different number system)
Thus the obtained hexadecimal number for (1010011011.1101001)2 is (29B.D2)16.
Hexadecimal to Binary Number conversion
For this conversion, perform the reverse process of binary to hexadecimal conversion. That is, each digit of the given hexadecimal number is individually converted into its binary equivalent to get the desired value. Let’s look at an example.
Example: Convert the hexadecimal number (689.2A)16 to its binary equivalent.
Solution. For each digit of the given hexadecimal number, write its binary equivalent to get the desired value.
Thus the obtained binary number for (689.2A)16 is (11010001001.0010101)2.
Related Posts