1
vote
5answers
252 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 …
1
vote
2answers
1k views
Rational number calculator
I want to make a rational number calculator, but I don't know how to neglect some characters. E.g., if the program has to calculate the expression "2/9+9/3" and the answer should be in unsimplified …
5
votes
10answers
752 views
How to convert rational and decimal number strings to floats in python?
How can I convert strings which can denote decimal or rational numbers to floats
>>> ["0.1234", "1/2"]
['0.1234', '1/2']
I'd want [0.1234, 0.5].
eval is what I was thinking but no luck:
…
4
votes
3answers
458 views
Pure Python rational numbers module for 2.5
Has anybody seen such a thing? Small self-sufficient modules are preferred.
1
vote
3answers
226 views
Rational numbers in C# and XML
I'm working with an XML file that subscribes to an industry standard. The standards document for the schema defines one of the fields as a rational number and its data is represented as two integers, …
