Click here to Skip to main content
Licence CPOL
First Posted 24 Jan 2006
Views 19,879
Bookmarked 13 times

.NET Rational (fraction) value type using Decimals, written in C#

By | 24 Jan 2006 | Article
Implements a Rational datatype.

Introduction

The class presented in this article implements a rational value type with basic mathematical functionality.

Using the code

This class has no public constructors.

Implicit casting to/from Int64 (and therefore other integer types) and decimal (and therefore float and double) is supported.

// Cast from int
PIEBALD.Types.Rational a = 1 ;
// Cast from double (via decimal)
PIEBALD.Types.Rational b = 2.3 ;
// Cast from decimal
PIEBALD.Types.Rational c = 4.5M ;

Conversion from decimal can be controlled by the ConversionMethod static property. Currently, the DecimalConversionMethod enumeration defines two values: Decimal and BestGuess. Decimal simply uses a power of ten as the denominator. BestGuess tries (with some success) to determine what numbers can be divided to produce the value.

// This is the default
PIEBALD.Types.Rational.ConversionMethod = 
               DecimalConversionMethod.Decimal;
// Yields 33333333333333333333
//    33333333/10000000000000000000000000000
PIEBALD.Types.Rational d = 1M / 3M ;
PIEBALD.Types.Rational.ConversionMethod = 
             DecimalConversionMethod.BestGuess;
// Yields 1/3
PIEBALD.Types.Rational e = 1M / 3M ;

Strings containing expressions can be assigned with the ParseInfix and ParseRpn methods.

// Convert from string
PIEBALD.Types.Rational f = 
   PIEBALD.Types.Rational.ParseInfix ( "1/2" ) ;
// Convert from string
PIEBALD.Types.Rational g = 
   PIEBALD.Types.Rational.ParseInfix ( "(1/2) / (3/4)" ) ;
// Convert from string
PIEBALD.Types.Rational h = 
   PIEBALD.Types.Rational.ParseRpn ( "1 2 /" ) ;

See my PIEBALD.Lib.LibRpn class for information on how infix is transformed to RPN.

The mathematical operators (+, -, *, /, %, ^ (exponentiation)) are supported. There are other static and instance properties as well.

History

  • First posted - 2006/01/16.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

PIEBALDconsult

Software Developer (Senior)

United States United States

Member

BSCS 1992 Wentworth Institute of Technology
 
Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.
 
OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB
 
---------------
 
"Typing is no substitute for thinking." -- R.W. Hamming
 
"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup
 
ZagNut’s Law: Arrogance is inversely proportional to ability.
 
"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon
 
"linq'ish" sounds like "inept" in German -- Andreas Gieriet
 

"Things would be different if I ran the zoo." -- Dr. Seuss
 
"Wrong is evil, and it must be defeated." – Jeff Ello
 
"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw
 

"Omit needless local variables." -- Strunk... had he taught programming
 
"DON'T BE LIBERAL IN WHAT YOU ACCEPT!"
 
"Software Engineers don't have Trophy Wives; they have Presentation Layers."
 
"We learn more from our mistakes than we do from getting it right the first time."
 
"I'm an old dog and I like old tricks."
 
"Sometimes the envelope pushes back and sometimes you get a really nasty paper cut."
 
"A method shall have one and only one return statement."
 
My first rule of debugging: "If you get a different error message, you're making progress."
 
My golden rule of database management: "Do not unto others' databases as you would not have done unto yours."
 
My general rule of software development: "Design should be top-down, but implementation should be bottom-up."
 
"Today's heresy is tomorrow's dogma."
or
"Today's dogma is yesterday's heresy."
 
"The registry is evil."
 
"Every tool is a hammer."

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralLooks some code is missed. PinmemberMember 25701031:51 23 Mar '09  
GeneralRe: Looks some code is missed. PinmemberPIEBALDconsult5:03 23 Mar '09  
GeneralRe: Looks some code is missed. PinmemberMember 25701037:35 25 Mar '09  
GeneralRe: Looks some code is missed. PinmemberPIEBALDconsult8:39 25 Mar '09  
GeneralRe: Looks some code is missed. PinmemberMember 257010320:05 25 Mar '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 24 Jan 2006
Article Copyright 2006 by PIEBALDconsult
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid