Conversion from decimal base into another system of numeration

The first step to convert a decimal number into another in base b is to do successive integer divisions of the number by base b.

Example

How would number 7 be expressed in a numeration system of base 5?

To find this, it will be necessary to divide 7 by 5 and keep the quotient and the remainder:

(7)107|521

The first digit of the number we are looking for is the result of the division, and the second one is the remainder.

This way, the equivalent of 7 in base 5 will be:

(12)5

We can prove that the operation is correct by decomposing the number:

(12)5=151+250=5+2=7

Example

Following the same line, the number 13 is equivalent in binary (system in base 2) to:

(13)1013|216|203|211

The first digit of the number we are looking for is the result of the last division, the second digit is the remainder of the same division, and the third and fourth digits are the remainders of the previous divisions, so the obtained number is:

(13)10=(1101)2

It is possible to prove again that the calculations are correct by decomposing the obtained number:

(1101)2=123+122+021+120=8+4+0+1=13

Example

Convert 47 into hexadecimal system:

Hexadecimal means base 16, so it will be necessary to divide 47 by 16 as many times as possible to find the number:

(47)1047|16152

So:

(47)10=(2(15))16=(2F)16

Remember that the symbol to express 15 in hexadecimal is F.

Decomposing the number in powers of 16 is a way of proving that the result is correct:

(2F)16=2161+15160=32+15=47

Example

To convert the following number into binary system:

(115)6

First, it is necessary to convert it into decimal system and then into binary by doing all the possible integer divisions by 2.

(115)6=162+161+560=36+6+5=47

(47)1047|2123|2111|215|212|201

So that:

(115)6=(101111)2