Free counters!

Wednesday, July 15, 2015

Converting from Base 2 to Base 10 Problems, 2

Category: Arithmetic

"Published in Vacaville, California, USA"

Convert 1101112 into Base 10.
  
Solution:
                             
The given number which is
1101112 is written in Base 2. Base 2 number is also called binary system. The digits of Base 2 number are 0, and 1.
   
On the other hand, Base 10 number is a number whose digits are 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. If you don't see any subscript at the given number, then that number is written in Base 10. Base 10 number is also called decimal system. Base 10 number is a common number that we are using right now in everyday life. 
       
Now, let's convert
1101112 into Base 10. How? Let's multiply each digits by the powers of 2 as follows:
         
Base 2 Digits:        1      1      0      1      1      1
Multiply by:            2⁵     2⁴     2³   
2²     2¹     2⁰
             
Add all the digits, we have
                 
(1 x 
2⁵) + (1 x 2⁴) + (0 x ) + (1 x 2²) + (1 x 2¹) + (1 x 2⁰) = 32 + 16 + 0 + 4 + 2 + 1 = 55
             
Therefore,
1101112 = 55