Tagged Questions

2
votes
5answers
2k views

Algorithm for detecting repeating decimals?

Is there an algorithm for figuring out the following things? If the result of a division is a repeating decimal (in binary). If it repeats, at what digit (represented as a power of 2) does the ...
0
votes
2answers
181 views

What is the most efficient way to determine the Farey sequence of degree n?

I am going to implement a Farey fraction approximation for converting limited-precision user input into possibly-repeating rationals. http://mathworld.wolfram.com/FareySequence.html I can easily ...