How to convert binary number to decimal number?
Step 1: Start from right most bit.
Step 2: Multiply the right most bit with 2 and 2 is assigned with poswer 0. e.g; 20
Step 3: Now move to left bits one by one. Value of power is incremented on after each one bit.
Example 1:
Convert the 110101 into its equivalent decimal number system.
Solution:
1101012Â = (1*25)+(1*24)+(0*23)+(1*22)+(0*21)+(1*20)
= | 32Â + Â 16 Â +Â 0Â Â +Â 4Â +Â 0Â Â +Â 1 |
= 53
Example 2:
Convert the 110101 into its equivalent decimal number system.
Solution:
1100112Â = (1*25)+(1*24)+(0*23)+(0*22)+(1*21)+(1*20)
= | 32Â + Â 16 Â +Â 0Â Â + Â 0 Â + Â 2 Â +Â 1 |
= 51