You are on page 1of 2

Converting to and from

base 10 to other base


numbers (2 methods)
Converting from binary (base 2) to decimal (base 10)
100112 = (1 x 24) + (0 x 23) + (0 x 22) + (1 x 21) + (1 x 20)
= 1910

Converting from base 5 to decimal (base 10)


21325 = (2 x 53) + (1 x 52) + (3 x 51) + (2 x 50)
=2925

Converting Decimal to base 4: Method 1


1004= (1*64) + (2*16) + (1*4) + (0*1)
= (1*43) + (2*42) + (1*41) + (0*40)
=12104

Decimal to any base: Method 2


Keep dividing the decimal number by the base number you wish to convert to and keep the
remainders (R). Stop dividing until the quotient equals 0. Read the answer upwards (down to
up) in the remainder column.

Decimal to Base 6

8210 base 6
82 / 6 = 13 R 4
13 / 6 = 2 R 1
2/6=0 R2
8210 = 2146

Decimal to Base 4
10010 12104
4 )100
4 ) 25
4) 6
4)1
0

R
0
1
2
1

Decimal to Binary (base 2)


15610 base 2 = 100111002
R
2) 156 0
2) 78
0
2) 39
1
2) 19
1
2) 9
1
2) 4
0
2) 2
0
2) 1
1
0

Decimal to base 8
1710 218
8)17 1
8)2 2
0

You might also like