The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
46 views

Octave random Rational Numbers gernrator

I just start to study about Octave and I have a question about getting Rational Numbers. I just check ...
0
votes
1answer
45 views

Why have Apache commons-math based it's Fraction on int type? [closed]

Why have Apache commons-math3 based it's Fraction on int type??? Are there any reasons to use int instead of long? Do we have some performance gains here? Aren't longs process at the same speed as ...
2
votes
4answers
291 views

Convert a decimal number to a fraction / rational number

In JavaScript, is there any way to convert a decimal number (such as 0.0002) to a fraction represented as a string (such as "2/10000")? If a function called decimalToFraction had been written for ...
0
votes
1answer
62 views

Representing a fraction in binary?

I'm looking at binary data representations for fractions, and I was wondering what kind of a data structure the fraction would have if you were to store both the numerator and denominator that store a ...
1
vote
1answer
114 views

MATLAB vpa() doesn't compute variable-point number for expression with exponent?

Trying to use vpa() to compute a variable point number for a rational expression in an exponent: syms x; ans1 = x^(12345/67890) ans2 = vpa(x^(12345/67890),3) ans2_5 = vpa((12345/67890),3) ans3 = ...
0
votes
3answers
311 views

Converting float decimal to fraction

I am trying to convert calculations keyed in by users with decimal results into fractions. For e.g.; 66.6666666667 into 66 2/3. Any pointers? Thanx in advance
-1
votes
3answers
91 views

Transform rational numbers to integers

How can I transform rational numbers like 1.24234 or 45.314 into integers like 124234 or 45314 also getting the number of decimal digits?
1
vote
0answers
40 views

Trim decimal digits [duplicate]

Possible Duplicate: Truncate a decimal value in c++ How can I truncate some of the decimal digits of a rational number so that it has only 6 digits? (For example 1.2345678909876 to 1.23456) ...
6
votes
2answers
218 views

C++ input operator overload “>>”

I have a rational number class is made up of two integers: num, the nominator, and den, the denominator. The following operator is supposed to read the rational number from a stream. istream& ...
1
vote
5answers
616 views

Convert Floating-point number into a Rational number in Java? [duplicate]

Possible Duplicate: How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator? I would like to take an arbitrary float or double in ...
0
votes
1answer
212 views

Using Fractions in Haskell

Continuing from the previous question: Power Series in Haskell I am trying to write the power series in Haskell, e^x = 1 + x + x^2/2! + x^3/3! + ... such that it will output [1,1,1/2,1/6,...] ...
0
votes
2answers
340 views

Fastest C++ Rational Number library [closed]

I'm using GMPXX wrapper of GMP and it is not fast enough. Is it possible to find some comparison of rational number libraries' speed? During my calculation a very big rational number will appear with ...
9
votes
3answers
387 views

Design principles behind `std::ratio<>`

I was looking at the new class std::ratio<> from the C++11 standard that allows to make compile-time rational arithmetic. I find the template design and the operations implemented with classes ...
0
votes
1answer
150 views

C# Printing Rational Number With High Resolution

I have the following conundrum. In C#, I want to store a rational and get a string representation of it's decimal notation. Normally I would just use float or double to store the number and get the ...
2
votes
1answer
281 views

Importing Ratio module using ghci

I am learning Haskell and trying to use exact Rational numbers. I have the the following simple Haskell code: import Ratio x :: Rational x = 5 % 2 When I load this in WinHugs, everything is fine. ...
0
votes
1answer
187 views

Trying to use abstract data types - How to call the methods through inheritence

I am trying to test my abstract class but I am running into problems when I call the methods from the test class. It has been a while since I used Java and I have not used abstract classes before. Any ...
5
votes
2answers
63 views

Why is the new method not needed for creating Rational in ruby [duplicate]

Possible Duplicate: Ruby syntax question: Rational(a, b) and Rational.new!(a, b) I'm in the process of reading the ruby pickaxe book, and I'm confused about the syntax of creating rational ...
1
vote
2answers
377 views

Convert decimal to fraction (rational number) in Objective C?

As part of a calculator app, I am trying to implement uses with sigma notation. However, the result it prints out is always a decimal, and the rest isn't important. I simply want to change the decimal ...
5
votes
1answer
198 views

Performant algorithm to rationalize floats

Given a floating point number, I'm looking to get a String representation of a rational number approximating the decimal (to within a given tolerance ε is fine). My current approach is as follows: ...
1
vote
2answers
169 views

Matlab rat function in C language

Do you know how to make a rational approximation of a decimal number in C (similar to rat Matlab function)? Update If we want a P/Q approximation of a double number number, a quick fix could be: ...
0
votes
2answers
474 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 ...
3
votes
4answers
295 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 ...
7
votes
3answers
583 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 ...
4
votes
4answers
3k 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 ...
3
votes
3answers
256 views

finding a rational number with a property

I have to write a program to find a rational number that has a property. I wrote the code to check the property, but now I don't know how to check all rational numbers. I tried with float rat; for ...
3
votes
4answers
148 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
2answers
397 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.
48
votes
8answers
3k views

The “guess the number” game for arbitrary rational numbers?

I once got the following as an interview question: I'm thinking of a positive integer n. Come up with an algorithm that can guess it in O(lg n) queries. Each query is a number of your choosing, ...
4
votes
1answer
252 views

How do you represent fraction in F# without the loss of precision?

What is best way to represent fractions in F#? Haskell and Racket have convinient way to represent ratios. Is there a data type in F# to represent ratios?
5
votes
1answer
264 views

Is there an implementation of _rational_ interval arithmetic in Python?

Is there an implementation of rational interval arithmetic in Python? This uses floats, not rationals. If not, is there any implementation of rationals in Python that includes ±∞ ?
3
votes
1answer
135 views

Haskell Text.Json package can read but not write Rationals?

When I try to decode a JSON file with a floating point number, the Text.JSON package gives me the number as a JSRational. So, I can do a readJSON on a JSRational. However, I can't write rational ...
3
votes
5answers
589 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. ...
6
votes
5answers
5k 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
1answer
5k views

Rational number calculator [closed]

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 ...
7
votes
10answers
4k 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: ...
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.
2
votes
4answers
1k 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, ...