5,448,416 members and growing! (18,713 online)
Email Password   helpLost your password?
Languages » C++ / CLI » General     Intermediate

Decimal to English Fraction Algorithm

By Gammill

A four line algorithm in MC++ for converting decimals to fractions.
C++/CLI, VC7.1, C++, .NET, Windows, WinXPVS.NET2003, Visual Studio, Dev

Posted: 15 Jan 2005
Updated: 23 Jan 2005
Views: 44,635
Bookmarked: 7 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
8 votes for this Article.
Popularity: 3.18 Rating: 3.53 out of 5
2 votes, 25.0%
1
1 vote, 12.5%
2
0 votes, 0.0%
3
4 votes, 50.0%
4
1 vote, 12.5%
5

Introduction

A four line algorithm in MC++ for converting a decimal value to three separate pieces: units, numerator, denominator. Their results are suitable to format a string.

Formula

The basic formula is to divide the right side of the decimal value by the decimal equivalent of the fractional measure and round to an integer. This becomes the numerator over the desired denominator (of the conversion fraction). Thus, for converting to an eighth, as 1/8 is .125, one divides the IEEERmainder() of the decimal by .125 to obtain a numerator over 8.

Convert 3.6742 to 16th: .6742/.0625 = 10.7872. 10.7872 rounds to 11 creating the fraction 11/16. The result is three and eleven sixteen (3 11/16).

Convert 3.6742 to 8th: .6742/.125 = 5.3936 = 5/8. The result is three and five eighth. (3 5/8).

I use Math::IEERemainder(decimal, 1.0) to separate the decimal from the single value, and Math::floor(decimal) to separate the units. If the decimal part is greater than .5 then the Math algorithm returns a negative complement, and must be subtracted from one. Thus the line:

if (Math::Sign(remainder) == -1) remainder = 1 + remainder

.6742 returns -0.32579942, which, when added to 1.0 results in .6742008.

Due to this check of the sign the algorithm only works for positive numbers.

The Algorithm:

(The decimal and denominator are input)

Single remainder = Math::IEEERemainder(decimal, 1.0);
if (Math::Sign(remainder) == -1) remainder = 1 + remainder;
Int32  units = Convert::ToInt32(Math::Floor(decimal));
Int32  numerator = Convert::ToInt32(Math::Round(remainder/denominator));

Other considerations;

For flexibility, one would prefer to provide an integer specifying the desired conversion rather than hard code, say, .125 as the denominator. Thus input an integer numerator and compute the divisor.

// compute the fractions numerator

Single divisor = Convert::ToSingle(1)/Convert::ToSingle(denominator);
Int32 numerator = Convert::ToInt32(Math::Round(remainder/divisor));

The algorithm only works for positive decimals, thus one needs to test for flag, correct and restore negativity. Further, problems that need to be considered are the rounding down to zero and rounding up to the next unit, and reduction of the fraction. The following code accounts for these.

The following code was written for a very specific purpose: to convert English inch measurement fractions, specifically, the common fractions 1/8, 1/4 and 1/2. (Although I tested to 1/32.) I was not interested in fractions like 1/5 or 1/7 or 1/324 whatever. The algorithm may be useful to help those, but not the example function. The code is not generalized. But the algorithm is. The code is only provided as a wrapper example.

Code:

#pragma warning( disable : 4244 )  // possible loss of data due to conversion

// Convert a Single to a string fraction of the 

// form "integer numerator/denominator"

String* Utils::Form1::SingleToStringFraction(Single decimal, Int32 denominator)
{
   // Input must be positive so save and restore the negative if necessary.

   bool isneg = (Math::Sign(decimal) == -1) ? true : false;
   if (isneg) decimal *= -1;

   // obtain the decimal and units parts of the input number

   Single remainder = Math::IEEERemainder(decimal, 1.0);
   if (Math::Sign(remainder) == -1) remainder = 1 + remainder;
   Int32  units = Convert::ToInt32(Math::Floor(decimal));

   // compute the fractions numerator

   Single divisor = Convert::ToSingle(1)/Convert::ToSingle(denominator);
   Int32 numerator = Convert::ToInt32(Math::Round(remainder/divisor));

   String* fraction;

   // Handle an error or condition or reduce the fraction

    // and convert to a string for the return.

   if ((numerator > 0) && (numerator == denominator))
   {
      // than fraction is one full unit

      units++;
      fraction = S"";
   }
   else if (numerator == 0)
   {
      // as numerator is 0, no fraction

      fraction = S"";
   }
   else
   {
      // reduce

      while (numerator%2 == 0)
      {
         numerator   /= 2;
         denominator /= 2;
      }
      fraction = String::Format(" {0}/{1}",
                   numerator.ToString(), denominator.ToString());
   }

   // restore negativity

   if (isneg) units *= -1;

#ifdef _DEBUG_CUT
   String* rtnstr;
   if (isneg) decimal *= -1;
   rtnstr = String::Format("{0}{1}", units.ToString(), fraction);
   Diagnostics::Trace::WriteLine(rtnstr, decimal.ToString());
#endif

   return String::Format("{0}{1}", units.ToString(), fraction);
}
#pragma warning( default : 4244 )

Caveat

I have never claimed to know everything. And, my MC++ skills may be lacking. If you know of a better and more efficient algorithm, or can improve on the quality of the above code, please comment. In the program that I am working on, I will be going back and forth from fractions to decimals regularly. Efficiency would be nice.

Oh yes, one could simply convert to a string and use split on S"."; but what fun in that? And using Math to split the Single qualifies as an algorithm while splitting a string does not.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Gammill


Retired C programmer and Unix Sys Admin, then VC6 C++ MFC programmer. I moved to VC7 C++ 2003 in Oct of 04, and VC8 C++/CLI early in 06. My preferred language is C++/CLI.

Visit my site www.wedgesoft.com for a free maze game. (My first Win95 MFC prog written some years back. Which I am ashamed to admit has problems running under XP. It needs to be rewritten under .Net; but I've no interest or time.)
Occupation: Web Developer
Location: United States United States

Other popular C++ / CLI articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 11 of 11 (Total in Forum: 11) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralBase 2 fractionsmemberJaen14:46 18 Jun '05  
GeneralA few pointsmemberChris Hills0:35 18 Jan '05  
GeneralRe: A few pointsmemberGammill10:46 18 Jan '05  
GeneralSingle limits to only 7 digitsmemberGammill20:00 16 Jan '05  
GeneralOthers of set of 3memberGammill13:10 16 Jan '05  
GeneralRe: Others of set of 3memberWoR0:45 17 Jan '05  
GeneralRe: Others of set of 3memberGammill15:10 17 Jan '05  
GeneralRe: Others of set of 3memberrvdt21:33 25 Jan '05  
GeneralDecimal and Floating-point to fractions is never easy.sussMarc Brooks13:21 24 Jan '05  
GeneralRe: Decimal and Floating-point to fractions is never easy.memberGammill19:23 24 Jan '05  
GeneralRe: Decimal and Floating-point to fractions is never easy.memberMarc Brooks19:54 24 Jan '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 23 Jan 2005
Editor: Rinish Biju
Copyright 2005 by Gammill
Everything else Copyright © CodeProject, 1999-2008
Web13 | Advertise on the Code Project