Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
203 views

How to parse a decimal fraction into Rational in Haskell?

I've been participating in a programming contest and one of the problems' input data included a fractional number in a decimal format: 0.75 is one example. Parsing that into Double is trivial (I can ...
6
votes
3answers
1k views

Pure Python rational numbers module for 2.5

Has anybody seen such a thing? Small self-sufficient modules are preferred.
5
votes
10answers
2k 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: ...
3
votes
4answers
164 views

Why do Haskell numerical literals need to start and end with digits?

In The Haskell 98 Report it's said that A floating literal must contain digits both before and after the decimal point; this ensures that a decimal point cannot be mistaken for another use of the ...
3
votes
4answers
126 views

Do any other languages have builtin rational types like scheme?

I haven't heard of any, most languages seem to just have division of ints round or be a floating point number. Was it found to be a problem in scheme and so not used in other languages?
2
votes
4answers
352 views

simplifying fractions in Java

My task is to develop a rational class. If 500 and 1000 are my inputs, then (½) must be my output. I have written a program on my own to find it. Is there another best way to find the solution, or my ...
2
votes
2answers
132 views

Rational numbers in Verilog

I need to use rational numbers in my Verilog code. I looked for any resource but I couldn't find anything about this issue. How can I define rational numbers in Verilog.
2
votes
5answers
376 views

How best to represent rational numbers in SQL Server?

I'm working with data that is natively supplied as rational numbers. I have a slick generic C# class which beautifully represents this data in C# and allows conversion to many other forms. ...
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 ...
2
votes
3answers
4k 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 ...
2
votes
4answers
925 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, ...
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 ...
0
votes
0answers
33 views

GC friendly arbitrary precision numbers

The fastest arbitrary precision rational and floating-point number library is said to be GMP, but in addition to portability problems, it has the drawback that it requires a memory manager with the ...