How to convert floats to human-readable fractions? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T01:12:52Zhttp://stackoverflow.com/feeds/question/95727http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions10How to convert floats to human-readable fractions?Swaroop C H2008-09-18T19:00:09Z2009-08-25T22:44:26Z
<p>Let's say we have 0.33, we need to output "1/3". <br />
If we have "0.4", we need to output "2/5".</p>
<p>The idea is to make it human-readable to make the user understand "x parts out of y" as a better way of understanding data.</p>
<p>I know that percentages is a good substitute but I was wondering if there was a simple way to do this?</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95778#957782Answer by nlucaroni for How to convert floats to human-readable fractions?nlucaroni2008-09-18T19:05:20Z2008-09-18T19:05:20Z<p>You might want to read <a href="http://docs.sun.com/source/806-3568/ncg_goldberg.html" rel="nofollow">What Every Computer Scientist Should Know about Floating Point Arithmetic</a>.</p>
<p>You'll have to specify some precision by multiplying by a large number:</p>
<pre><code>3.141592 * 1000000 = 3141592
</code></pre>
<p>then you can make a fraction:</p>
<pre><code>3 + (141592 / 1000000)
</code></pre>
<p>and reduce via GCD...</p>
<pre><code>3 + (17699 / 125000)
</code></pre>
<p>but there is no way to get the <em>intended</em> fraction out. You might want to <em>always</em> use fractions throughout your code instead --just remember to reduce fractions when you can to avoid overflow!</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95785#9578510Answer by devinmoore for How to convert floats to human-readable fractions?devinmoore2008-09-18T19:06:03Z2008-09-18T19:06:03Z<p>Here's a link explaining the math behind converting a decimal to a fraction:</p>
<p><a href="http://www.webmath.com/dec2fract.html" rel="nofollow">http://www.webmath.com/dec2fract.html</a></p>
<p>And here's an example function for how to actually do it using VB (from www.freevbcode.com/ShowCode.asp?ID=582):</p>
<pre><code>Public Function Dec2Frac(ByVal f As Double) As String
Dim df As Double
Dim lUpperPart As Long
Dim lLowerPart As Long
lUpperPart = 1
lLowerPart = 1
df = lUpperPart / lLowerPart
While (df <> f)
If (df < f) Then
lUpperPart = lUpperPart + 1
Else
lLowerPart = lLowerPart + 1
lUpperPart = f * lLowerPart
End If
df = lUpperPart / lLowerPart
Wend
Dec2Frac = CStr(lUpperPart) & "/" & CStr(lLowerPart)
End Function
</code></pre>
<p>(From google searches: convert decimal to fraction, convert decimal to fraction code)</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95789#957891Answer by Torlack for How to convert floats to human-readable fractions?Torlack2008-09-18T19:06:31Z2008-09-18T19:06:31Z<p>You are going to have two basic problems that will make this hard:</p>
<p>1) Floating point isn't an exact representation which means that if you have a fraction of "x/y" which results in a value of "z", your fraction algorithm may return a result other than "x/y".</p>
<p>2) There are infinity many more irrational numbers than rational. A rational number is one that can be represented as a fraction. Irrational being ones that can not.</p>
<p>However, in a cheap sort of way, since floating point has limit accuracy, then you can always represent it as some form of faction. (I think...)</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95790#957902Answer by Orion Adrian for How to convert floats to human-readable fractions?Orion Adrian2008-09-18T19:06:34Z2008-09-18T19:14:46Z<p>Part of the problem is that so many fractions aren't actually easily construed as fractions. E.g. 0.33 isn't 1/3, it's 33/100. But if you remember your elementary school training, then there is a process of converting decimal values into fractions, however it's unlikely to give you what you want since most of the time decimal numbers aren't stored at 0.33, but 0.329999999999998 or some such.</p>
<p>Do yourself a favor and don't bother with this, but if you need to then you can do the following:</p>
<p>Multiply the original value by 10 until you remove the fractional part. Keep that number, and use it as the divisor. Then do a series of simplifications by looking for common denominators.</p>
<p>So 0.4 would be 4/10. You would then look for common divisors starting with low values, probably prime numbers. Starting with 2, you would see if 2 divides both the numerator and denominator evenly by checking if the floor of division is the same as the division itself.</p>
<pre><code>floor(5/2) = 2
5/2 = 2.5
</code></pre>
<p>So 5 does not divide 2 evenly. So then you check the next number, say 3. You do this until you hit at or above the square root of the smaller number.</p>
<p>After you do that then you need</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95811#958112Answer by Mark Bessey for How to convert floats to human-readable fractions?Mark Bessey2008-09-18T19:07:34Z2008-09-18T19:07:34Z<p>You'll have to figure out what level of error you're willing to accept. Not all decimal fractions will reduce to a simple fraction. I'd probably pick an easily-divisible number, like 60, and figure out how many 60ths is closest to the value, then simplify the fraction.</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95832#958321Answer by stephanea for How to convert floats to human-readable fractions?stephanea2008-09-18T19:09:21Z2008-09-18T19:09:21Z<p>I have no idea of the actual algorithm, but this pointer <a href="http://edoshin.skeletonkey.com/2006/01/fraction_approx.html" rel="nofollow">http://edoshin.skeletonkey.com/2006/01/fraction_approx.html</a> could be of some help.</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95851#958512Answer by Suma for How to convert floats to human-readable fractions?Suma2008-09-18T19:11:09Z2008-09-18T19:11:09Z<p>"Let's say we have 0.33, we need to output "1/3". "</p>
<p>What precision do you expect the "solution" to have? 0.33 is not equal to 1/3. How do you recognize a "good" (easy to read) answer?</p>
<p>No matter what, a possible algorithm could be:</p>
<p>If you expect to find a nearest fraction in a form X/Y where Y is less then 10, then you can loop though all 9 possible Ys, for each Y compute X, and then select the most accurate one.</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95873#958731Answer by Pascal for How to convert floats to human-readable fractions?Pascal2008-09-18T19:13:35Z2008-09-18T19:13:35Z<p>You can do this in any programming language using the following steps:</p>
<ol>
<li>Multiply and Divide by 10^x where x is the power of 10 required to make sure that the number has no decimal places remaining.
Example: Multiply 0.33 by 10^2 = 100 to make it 33 and divide it by the same to get 33/100</li>
<li>Reduce the numerator and the denominator of the resulting fraction by factorization, till you can no longer obtain integers from the result.</li>
<li>The resulting reduced fraction should be your answer.</li>
</ol>
<p>Example:
0.2
=0.2 x 10^1/10^1
=2/10
=1/5</p>
<p>So, that can be read as '1 part out of 5'</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95917#959170Answer by Tim for How to convert floats to human-readable fractions?Tim2008-09-18T19:17:05Z2008-09-18T19:17:05Z<p>As many people have stated you really can't convert a floating point back to a fraction (unless its extremely exact like .25). Of course you could create some type of look up for a large array of fractions and use some sort of fuzzy logic to produce the result you are looking for. Again this wouldn't be exact though and you would need to define a lower bounds of how large your want the denominator to go.</p>
<p>.32 < x < .34 = 1/3 or something like that.</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/96035#9603512Answer by Epsilon for How to convert floats to human-readable fractions?Epsilon2008-09-18T19:28:07Z2008-09-18T19:36:41Z<p>I have found David Eppstein's <a href="http://www.ics.uci.edu/~eppstein/numth/frap.c" rel="nofollow">find rational approximation to given real number</a> C code to be exactly what you are asking for. Its based on the theory of continued fractions and very fast and fairly compact.</p>
<p>I have used versions of this customized for specific numerator and denominator limits.</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/97337#97337-1Answer by JP for How to convert floats to human-readable fractions?JP2008-09-18T21:46:51Z2008-10-18T10:33:36Z<p>If the the output is to give a human reader a fast impression of the order of the result, it makes no sense return something like "113/211", so the output should limit itself to using one-digit numbers (and maybe 1/10 and 9/10). If so, you can observe that there are only 27 <em>different</em> fractions.</p>
<p>Since the underlying math for generating the output will never change, a solution could be to simply hard-code a binary search tree, so that the function would perform at most log(27) ~= 4 3/4 comparisons. Here as <a href="http://haxe.org" rel="nofollow">haXe</a> code:</p>
<pre><code>static function toFrac( f : Float ) : String
{
// TODO: Extract the sign and whole-number part first if f > 0.0 or f < 1.0.
return
if( f < 0.47 )
if( f < 0.25 )
if( f < 0.16 )
if( f < 0.13 )
if( f < 0.11 )
"1/10";
else
"1/9";
else
if( f < 0.14 )
"1/8";
else
"1/7";
else
if( f < 0.19 )
"1/6";
else
if( f < 0.22 )
"1/5";
else
"2/9";
else
if( f < 0.38 )
if( f < 0.29 )
"1/4";
else
if( f < 0.31 )
"2/7";
else
"1/3";
else
if( f < 0.43 )
if( f < 0.40 )
"3/8";
else
"2/5";
else
if( f < 0.44 )
"3/7";
else
"4/9";
else
if( f < 0.71 )
if( f < 0.60 )
if( f < 0.56 )
"1/2";
else
if( f < 0.57 )
"5/9";
else
"4/7";
else
if( f < 0.63 )
"3/5";
else
if( f < 0.66 )
"5/8";
else
"2/3";
else
if( f < 0.80 )
if( f < 0.74 )
"5/7";
else
if(f < 0.78 )
"3/4";
else
"7/9";
else
if( f < 0.86 )
if( f < 0.83 )
"4/5";
else
"5/6";
else
if( f < 0.88 )
"6/7";
else
if( f < 0.89 )
"7/8";
else
if( f < 0.90 )
"8/9";
else
"9/10";
}
</code></pre>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/97574#975740Answer by robottobor for How to convert floats to human-readable fractions?robottobor2008-09-18T22:16:10Z2008-09-18T22:16:10Z<p>One solution is to just store all numbers as rational numbers in the first place. There are libraries for rational number arithmetic (eg <a href="http://gmplib.org/" rel="nofollow">GMP</a>). If using an OO language you may be able to just use a rational number class library to replace your number class.</p>
<p>Finance programs, among others, would use such a solution to be able to make exact calculations and preserve precision that may be lost using a plain float.</p>
<p>Of course it will be a lot slower so it may not be practical for you. Depends on how much calculations you need to do, and how important the precision is for you.</p>
<pre><code>a = rational(1);
b = rational(3);
c = a / b;
print (c.asFraction) ---> "1/3"
print (c.asFloat) ----> "0.333333"
</code></pre>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/98983#989831Answer by Doug McClean for How to convert floats to human-readable fractions?Doug McClean2008-09-19T02:27:50Z2008-09-19T02:27:50Z<p>The <a href="http://en.wikipedia.org/wiki/Stern-Brocot_tree" rel="nofollow">Stern-Brocot Tree</a> induces a fairly natural way to approximate real numbers by fractions with simple denominators.</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/681534#6815341Answer by mivk for How to convert floats to human-readable fractions?mivk2009-03-25T13:17:00Z2009-03-25T13:17:00Z<p>Here are Perl and Javascript versions of the VB code suggested by devinmoore:</p>
<p>Perl:</p>
<pre><code>sub dec2frac {
my $d = shift;
my $df = 1;
my $top = 1;
my $bot = 1;
while ($df != $d) {
if ($df < $d) {
$top += 1;
}
else {
$bot += 1;
$top = int($d * $bot);
}
$df = $top / $bot;
}
return "$top/$bot";
}
</code></pre>
<p>And the almost identical javascript:</p>
<pre><code>function dec2frac(d) {
var df = 1;
var top = 1;
var bot = 1;
while (df != d) {
if (df < d) {
top += 1;
}
else {
bot += 1;
top = parseInt(d * bot);
}
df = top / bot;
}
return top + '/' + bot;
}
</code></pre>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/1331433#13314330Answer by eldad for How to convert floats to human-readable fractions?eldad2009-08-25T22:44:26Z2009-08-25T22:44:26Z<p>this is not an "algorithm", just a python solution:
<a href="http://docs.python.org/library/fractions.html" rel="nofollow">http://docs.python.org/library/fractions.html</a></p>
<blockquote>
<blockquote>
<blockquote>
<p>from fractions import Fraction
Fraction('3.1415926535897932').limit_denominator(1000)
Fraction(355, 113)</p>
</blockquote>
</blockquote>
</blockquote>