Class Fraction
java.lang.Object
java.lang.Number
org.apache.commons.numbers.fraction.Fraction
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Fraction>,Addition<Fraction>,Multiplication<Fraction>,NativeOperators<Fraction>
public class Fraction extends java.lang.Number implements java.lang.Comparable<Fraction>, java.io.Serializable, NativeOperators<Fraction>
Representation of a rational number.
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static FractionFOUR_FIFTHSA fraction representing "4/5".static FractionMINUS_ONEA fraction representing "-1 / 1".static FractionONEA fraction representing "1".static FractionONE_FIFTHA fraction representing "1/5".static FractionONE_HALFA fraction representing "1/2".static FractionONE_QUARTERA fraction representing "1/4".static FractionONE_THIRDA fraction representing "1/3".static FractionTHREE_FIFTHSA fraction representing "3/5".static FractionTHREE_QUARTERSA fraction representing "3/4".static FractionTWOA fraction representing "2 / 1".static FractionTWO_FIFTHSA fraction representing "2/5".static FractionTWO_QUARTERSA fraction representing "2/4".static FractionTWO_THIRDSA fraction representing "2/3".static FractionZEROA fraction representing "0". -
Constructor Summary
Constructors Constructor Description Fraction(double value)Create a fraction given the double value.Fraction(double value, double epsilon, int maxIterations)Create a fraction given the double value and maximum error allowed.Fraction(double value, int maxDenominator)Create a fraction given the double value and maximum denominator.Fraction(int num)Create a fraction from an int.Fraction(int num, int den)Create a fraction given the numerator and denominator. -
Method Summary
Modifier and Type Method Description Fractionabs()Returns the absolute value of this fraction.Fractionadd(int i)Add an integer to the fraction.Fractionadd(Fraction fraction)Adds the value of this fraction to another, returning the result in reduced form.intcompareTo(Fraction object)Compares this object to another based on size.Fractiondivide(int i)Divide the fraction by an integer.Fractiondivide(Fraction fraction)Divide the value of this fraction by another.doubledoubleValue()Gets the fraction as adouble.booleanequals(java.lang.Object other)Test for the equality of two fractions.floatfloatValue()Gets the fraction as afloat.intgetDenominator()Access the denominator.intgetNumerator()Access the numerator.static FractiongetReducedFraction(int numerator, int denominator)Creates aFractioninstance with the 2 parts of a fraction Y/Z.inthashCode()Gets a hashCode for the fraction.intintValue()Gets the fraction as anint.longlongValue()Gets the fraction as along.Fractionmultiply(int i)Multiply the fraction by an integer.Fractionmultiply(Fraction fraction)Multiplies the value of this fraction by another, returning the result in reduced form.Fractionnegate()Return the additive inverse of this fraction.Fractionone()Identity element.doublepercentageValue()Gets the fraction percentage as adouble.Fractionpow(int n)Repeated multiplication.Fractionreciprocal()Return the multiplicative inverse of this fraction.Fractionsubtract(int i)Subtract an integer from the fraction.Fractionsubtract(Fraction fraction)Subtracts the value of another fraction from the value of this one, returning the result in reduced form.java.lang.StringtoString()Returns theStringrepresenting this fraction, ie "num / dem" or just "num" if the denominator is one.Fractionzero()Identity element.
-
Field Details
-
TWO
A fraction representing "2 / 1". -
ONE
A fraction representing "1". -
ZERO
A fraction representing "0". -
FOUR_FIFTHS
A fraction representing "4/5". -
ONE_FIFTH
A fraction representing "1/5". -
ONE_HALF
A fraction representing "1/2". -
ONE_QUARTER
A fraction representing "1/4". -
ONE_THIRD
A fraction representing "1/3". -
THREE_FIFTHS
A fraction representing "3/5". -
THREE_QUARTERS
A fraction representing "3/4". -
TWO_FIFTHS
A fraction representing "2/5". -
TWO_QUARTERS
A fraction representing "2/4". -
TWO_THIRDS
A fraction representing "2/3". -
MINUS_ONE
A fraction representing "-1 / 1".
-
-
Constructor Details
-
Fraction
public Fraction(double value)Create a fraction given the double value.- Parameters:
value- the double value to convert to a fraction.- Throws:
java.lang.IllegalArgumentException- if the continued fraction failed to converge.
-
Fraction
public Fraction(double value, double epsilon, int maxIterations)Create a fraction given the double value and maximum error allowed.References:
- Continued Fraction equations (11) and (22)-(26)
- Parameters:
value- the double value to convert to a fraction.epsilon- maximum error allowed. The resulting fraction is withinepsilonofvalue, in absolute terms.maxIterations- maximum number of convergents- Throws:
java.lang.IllegalArgumentException- if the continued fraction failed to converge.
-
Fraction
public Fraction(double value, int maxDenominator)Create a fraction given the double value and maximum denominator.References:
- Continued Fraction equations (11) and (22)-(26)
- Parameters:
value- the double value to convert to a fraction.maxDenominator- The maximum allowed value for denominator- Throws:
java.lang.IllegalArgumentException- if the continued fraction failed to converge
-
Fraction
public Fraction(int num)Create a fraction from an int. The fraction is num / 1.- Parameters:
num- the numerator.
-
Fraction
public Fraction(int num, int den)Create a fraction given the numerator and denominator. The fraction is reduced to lowest terms.- Parameters:
num- the numerator.den- the denominator.- Throws:
java.lang.ArithmeticException- if the denominator iszeroor if integer overflow occurs
-
-
Method Details
-
abs
Returns the absolute value of this fraction.- Returns:
- the absolute value.
-
compareTo
Compares this object to another based on size.- Specified by:
compareToin interfacejava.lang.Comparable<Fraction>- Parameters:
object- the object to compare to- Returns:
- -1 if this is less than
object, +1 if this is greater thanobject, 0 if they are equal.
-
doubleValue
public double doubleValue()Gets the fraction as adouble. This calculates the fraction as the numerator divided by denominator.- Specified by:
doubleValuein classjava.lang.Number- Returns:
- the fraction as a
double
-
equals
public boolean equals(java.lang.Object other)Test for the equality of two fractions. If the lowest term numerator and denominators are the same for both fractions, the two fractions are considered to be equal.- Overrides:
equalsin classjava.lang.Object- Parameters:
other- fraction to test for equality to this fraction- Returns:
- true if two fractions are equal, false if object is
null, not an instance ofFraction, or not equal to this fraction instance.
-
floatValue
public float floatValue()Gets the fraction as afloat. This calculates the fraction as the numerator divided by denominator.- Specified by:
floatValuein classjava.lang.Number- Returns:
- the fraction as a
float
-
getDenominator
public int getDenominator()Access the denominator.- Returns:
- the denominator.
-
getNumerator
public int getNumerator()Access the numerator.- Returns:
- the numerator.
-
hashCode
public int hashCode()Gets a hashCode for the fraction.- Overrides:
hashCodein classjava.lang.Object- Returns:
- a hash code value for this object
-
intValue
public int intValue()Gets the fraction as anint. This returns the whole number part of the fraction.- Specified by:
intValuein classjava.lang.Number- Returns:
- the whole number fraction part
-
longValue
public long longValue()Gets the fraction as along. This returns the whole number part of the fraction.- Specified by:
longValuein classjava.lang.Number- Returns:
- the whole number fraction part
-
zero
Identity element. -
one
Identity element.- Specified by:
onein interfaceMultiplication<Fraction>- Returns:
- the field element such that for all
a,one().multiply(a).equals(a)istrue.
-
negate
Return the additive inverse of this fraction. -
reciprocal
Return the multiplicative inverse of this fraction.- Specified by:
reciprocalin interfaceMultiplication<Fraction>- Returns:
- the reciprocal fraction
-
add
Adds the value of this fraction to another, returning the result in reduced form. The algorithm follows Knuth, 4.5.1.
- Specified by:
addin interfaceAddition<Fraction>- Parameters:
fraction- the fraction to add, must not benull- Returns:
- a
Fractioninstance with the resulting values - Throws:
java.lang.NullPointerException- if the fraction isnulljava.lang.ArithmeticException- if the resulting numerator or denominator exceedsInteger.MAX_VALUE
-
add
Add an integer to the fraction.- Parameters:
i- theintegerto add.- Returns:
- this + i
-
subtract
Subtracts the value of another fraction from the value of this one, returning the result in reduced form.
- Specified by:
subtractin interfaceNativeOperators<Fraction>- Parameters:
fraction- the fraction to subtract, must not benull- Returns:
- a
Fractioninstance with the resulting values - Throws:
java.lang.NullPointerException- if the fraction isnulljava.lang.ArithmeticException- if the resulting numerator or denominator cannot be represented in anint.
-
subtract
Subtract an integer from the fraction.- Parameters:
i- theintegerto subtract.- Returns:
- this - i
-
multiply
Multiplies the value of this fraction by another, returning the result in reduced form.
- Specified by:
multiplyin interfaceMultiplication<Fraction>- Parameters:
fraction- the fraction to multiply by, must not benull- Returns:
- a
Fractioninstance with the resulting values - Throws:
java.lang.NullPointerException- if the fraction isnulljava.lang.ArithmeticException- if the resulting numerator or denominator exceedsInteger.MAX_VALUE
-
multiply
Multiply the fraction by an integer.- Specified by:
multiplyin interfaceNativeOperators<Fraction>- Parameters:
i- theintegerto multiply by.- Returns:
- this * i
-
pow
Description copied from interface:NativeOperatorsRepeated multiplication.- Specified by:
powin interfaceNativeOperators<Fraction>- Parameters:
n- Power.- Returns:
this^n
-
divide
Divide the value of this fraction by another.
- Specified by:
dividein interfaceNativeOperators<Fraction>- Parameters:
fraction- the fraction to divide by, must not benull- Returns:
- a
Fractioninstance with the resulting values - Throws:
java.lang.ArithmeticException- if the fraction to divide by is zero or if the resulting numerator or denominator exceedsInteger.MAX_VALUE
-
divide
Divide the fraction by an integer.- Parameters:
i- theintegerto divide by.- Returns:
- this * i
-
percentageValue
public double percentageValue()Gets the fraction percentage as a
double. This calculates the fraction as the numerator divided by denominator multiplied by 100.- Returns:
- the fraction percentage as a
double.
-
getReducedFraction
Creates a
Fractioninstance with the 2 parts of a fraction Y/Z.Any negative signs are resolved to be on the numerator.
- Parameters:
numerator- the numerator, for example the three in 'three sevenths'denominator- the denominator, for example the seven in 'three sevenths'- Returns:
- a new fraction instance, with the numerator and denominator reduced
- Throws:
java.lang.ArithmeticException- if the denominator iszero
-
toString
public java.lang.String toString()Returns the
Stringrepresenting this fraction, ie "num / dem" or just "num" if the denominator is one.- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of the fraction.
- See Also:
Object.toString()
-