Converting 1/7 to Base 2: A Scientific Approach

  • Context: Undergrad 
  • Thread starter Thread starter zeebo17
  • Start date Start date
  • Tags Tags
    Base
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
8 replies · 5K views
zeebo17
Messages
40
Reaction score
0
What is 1/7 in base 2? How would you solve for this?

Thanks!
 
Mathematics news on Phys.org
As perhaps a hint, what is 1/2 in binary?
 
Just multiply your fraction by 2 repeatedly, writing a 0 for products less than 1, and a 1 for products greater than 1 (for the latter, subtract out 1 before continuing with the multiplication). For example:

1/7 * 2 = 2/7
2/7 * 2 = 4/7
4/7 * 2 = 1 1/7
1/7 * 2 = ... (repeats)

The binary value is 0.(001), where () indicates the repeating part.

For a little more detailed explanation, see heading "dec2bin_f()" in my article "http://www.exploringbinary.com/base-conversion-in-php-using-bcmath/".
 
Last edited by a moderator:
zeebo17 said:
What is 1/7 in base 2? How would you solve for this?

Thanks!


wouldn't it be:
Code:
1/111

But in decimal form it would be:
Code:
0.100010111000001001

I'm not sure if it's the correct answer though. My logic was to take the result of 1/7:

Code:
0.142857

remove the decimal (by multiplying it by 1,000,000) then converting that number to binary and then re-placing the decimal.

Is my method correct?
 
Steve.pf said:
wouldn't it be:
Code:
1/111
sure but not real interesting.

But in decimal form it would be:
Code:
0.100010111000001001

I'm not sure if it's the correct answer though. My logic was to take the result of 1/7:

Code:
0.142857

remove the decimal (by multiplying it by 1,000,000) then converting that number to binary and then re-placing the decimal.

Is my method correct?

No your method is not correct nor is your result. See the post by DoctorBinary for the correct algorithm. Following his process the integer part of each computation yields a digit of the binary number.
 
Steve.pf said:
wouldn't it be:
Code:
1/111

Perhaps another way to look at it, what is 0.537 as a decimal fraction? 5/10 + 3/102 + 7/103, so what is 0.111 as a binary fraction? 1/2 + 1/22 + 1/23 = 0.87510