Tagged Questions

5
votes
3answers
93 views

Rounding rationals in (0, 1) to the nearest unit fraction

What's a good algorithm for the following problem? Given a rational a / b strictly between 0 and 1, find a natural n that minimizes |a / b - 1 / n|. The simplest algorithm I can think of is to ...
4
votes
3answers
457 views

Egyptian Fractions in C

The ancient Egyptians only used fractions of the form 1/n so any other fraction had to be represented as a sum of such unit fractions and, furthermore, all the unit fractions were different! What is ...
4
votes
5answers
286 views

Optimized algorithm for converting a decimal to a “pretty” fraction

Rather than converting an arbitrary decimal to an exact fraction (something like 323527/4362363), I am trying to convert to just common easily-discernible (in terms of human-readability) quantities ...
3
votes
6answers
820 views

How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator?

How can I write an algorithm that given a floating point number, and attempts to represent is as accurately as possible using a numerator and a denominator, both restricted to the range of a Java ...
0
votes
1answer
64 views

convert fraction into string and also insert [] for repeating part

An interview question: Given two int N (numerator) and D (denominator), return the fraction in string. if the fraction is repeating, then display the repeating part in bracket. Example: Input: N=1, ...
0
votes
2answers
185 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
3answers
362 views

My problem is how do i make this work

import java.util.Scanner; public class Fraction { private int numerator; private int denominator; private int product; private int sum; public Fraction(int num, int denom) { ...