Converting between bases without base 10 mid-step

  • Context: High School 
  • Thread starter Thread starter smize
  • Start date Start date
  • Tags Tags
    Base Bases
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
12 replies · 11K views
smize
Messages
78
Reaction score
1
I am currently trying to go between any two bases which are between and including base 2 to base 10. (i.e, base 10 to base 3, base 4 to base 6, etc...). Is there an equation or set of formulas for a one-step transition between the bases (or one-way method, rather than converting to base-10 then to base-x.
 
Physics news on Phys.org
tiny-tim said:
there's a general rule that logab = logxb/logxa

Yes; I know the general log rules. I am part of the Math Academic team at my school and we are having to convert, for example, 20123 to Base 6. The issue at hand is we, at most, have 45 seconds to do the calculations and guarantee they are correct. We are wondering if there is a way to do this without have to convert it to Base 10 first. A.K.A. is there a direct way to convert between two non-decimal number systems?
 
smize said:
Yes; I know the general log rules. I am part of the Math Academic team at my school and we are having to convert, for example, 20123 to Base 6. The issue at hand is we, at most, have 45 seconds to do the calculations and guarantee they are correct. We are wondering if there is a way to do this without have to convert it to Base 10 first. A.K.A. is there a direct way to convert between two non-decimal number systems?

Yes, there is a way to do this, but all depends on how fast you can calculate.

Let [itex]a[/itex] be your number and let p be the base you want to convert it. Use the division algorithm to write

[tex]a=b_1p+r_1[/tex]

Use it again on [itex]b_1[/itex]:

[tex]b_1=b_1p+r_2[/tex]

Keep doing it until a [itex]b_n=0[/itex]. Then we have

[tex]b_{n-1}=0b_n+r_n[/tex]

Then [itex]r_n...r_2r_1[/itex] is the number you want.
 
micromass said:
Let [itex]a[/itex] be your number and let p be the base you want to convert it. Use the division algorithm to write

you didn't define the division algorithm...And using this, a will have to equal a non base-10 number to another non base-10 number of a different number system.
 
Could you give an example of using that to convert between let's say, base 6 and base 4?
 
So the division algorithm does work for all bases, it is just a matter of familiarizing yourself with the multiplication tables of the other bases, correct?
 
micromass said:
Correct. And that might be a bit difficult.

Maybe there are other methods, but I doubt it...

it is either that or converting to base 10 then the other bases. In some cases the multiple choice answers we have to choose from are also of 2 different bases -.- And we'll only have 45 seconds to answer.
 
converting from power of 2 you just regroup the bits. base 2, 4, and 8 is easy same for base 3 and 9. 67 base 8 to base 2 110 111 then to base 4 11 01 11 or 313
for base 9 to base 3, 87 base 9 is 22 21 base 3

The others are a bit tougher
 
Thank you coolul007. It is a very interesting method.