Paul Frieden asked:

Can you help me with a formula for converting base 10 numbers to other bases. It is needed for a JETS test next week.


Hi Paul:

Let's consider what is going on in a base 3 conversion to see the general algorithm (there's no nice `formula'). If we want to convert 204 base 10 to base 3, what we're doing is expressing 204 as a sum of powers of 3 -- instead of a 1's, 10's and 100's column we will have a 1's, 3's, 9's ... columns corresponding to the powers of 3. Consider the following table:
8127931
204
680
222
71
21

What we then see is that 204 is 2x81 + 1x27 +1x9 + 2x3 + 0x1, that is, 204 base 10 = 21120 in base 3. There of course is nothing special about base 3; if we wanted base 7 you would have seen:
4971
204
291
41
so that 204 is 411 in base 7.

Of course what is going on in our base 3 example to get from one row to the next is that we are successively dividing by 3 and recording the result and remainders in the appropriate places; a shorter format once one has the proper understanding is shown below ( I don't recommend starting this way as students rarely understand why the method works if just shown the following).
3204
680
222
71
21
02
i.e. 3 into 204 is 68 and a remainder of 0; 3 into 68 is 22 and a remainder of 2; ...; until we get to 3 into 2 is 0 with a remainder of 2. When you're done you read the right hand column from the bottom up. That is 204 base 10 = 21120 base 3.

Hope this helps,
Penny Nom


Go to Math Central

To return to the previous page use your browser's back button.