Fractions 8.0.4
dotnet add package Fractions --version 8.0.4
NuGet\Install-Package Fractions -Version 8.0.4
<PackageReference Include="Fractions" Version="8.0.4" />
paket add Fractions --version 8.0.4
#r "nuget: Fractions, 8.0.4"
// Install Fractions as a Cake Addin #addin nuget:?package=Fractions&version=8.0.4 // Install Fractions as a Cake Tool #tool nuget:?package=Fractions&version=8.0.4
Fractions
Introduction
This package provides the Fraction
type, used for representing rational numbers. It offers a comprehensive set of features for:
- Creating fractions from various data types (integers, decimals, strings, etc.)
- Performing common mathematical operations like addition, subtraction, multiplication, division, remainder, absolute value, and more.
- Rounding fractions to a specified precision.
- Converting fractions to different data types (decimals, strings, etc.).
- Formatting fractions for output using various notations (general, mixed number, decimal notation, etc.).
Creation
You can implicitly cast int
, uint
, long
, ulong
, decimal
or BigInteger
to Fraction
:
Fraction a = 3; // int
Fraction b = 4L; // long
Fraction c = 3.3m; // decimal
Fraction d = new BigInteger(3);
// ..
[!Note] For compatibility reasons, the
Fraction
that is produced by these operators is automatically reduced to its lowest terms, which may have a significant performance impact. If the performance is a concern, you should consider using one of the constructors that supports specifying the whether the terms should be reduced or not.
You can explicitly cast double
to Fraction
, however doing so directly has some important caveats that you should be aware of:
var a = (Fraction)3.3; // returns {3715469692580659/1125899906842624} which is 3.299999999999999822364316059975
You can explicitly cast from Fraction
to any supported data type (int
, uint
, long
, ulong
, BigInteger
, decimal
, double
). However, be aware that an OverflowException
will be thrown, if the target data type's boundary values are exceeded.
Constructors
There a three types of constructors available:
new Fraction (<value>)
forint
,uint
,long
,ulong
,BigInteger
,decimal
anddouble
(without rounding).new Fraction (<numerator>, <denominator>)
usingBigInteger
for numerator and denominator.new Fraction (<numerator>, <denominator>, <reduce>)
usingBigInteger
for numerator and denominator, as well as abool
specifying whether the resulting fraction should be normalized (reduced).
[!IMPORTANT] Please refer to the Working with non-normalized fractions section for more information about the possible side effects when working with non-reduced fractions.
Static creation methods
[!Note] All methods that were present in version 7.*, continue to return a
Fraction
that is automatically reduced to its lowest terms. Starting from version 8.0.0 these methods are now supplemented by an overload that adds an additionalboolean
parameter, specifying whether the terms should be reduced.
Fraction.FromDecimal(decimal)
: same as the implicit constructor.Fraction.FromDecimal(decimal, bool)
: theboolean
parameter specifies whether the returnedFraction
should be reduced.Fraction.FromDouble(double)
: same as the explicit constructor, theFraction
is constructed without rounding.Fraction.FromDoubleRounded(double)
: the resultingFraction
would represent a close approximation of the input.Fraction.FromDoubleRounded(double, int)
: the value is rounded to the specified number of significant digits.Fraction.FromDoubleRounded(double, int, bool)
: the value is rounded to the specified number of significant digits, with theboolean
parameter specifying whether the returnedFraction
should be reduced.
[!IMPORTANT] Starting from version 8.0.0, the
FromDouble(..)
overloads no longer throw anArgumentException
when passeddouble.NaN
,double.PositiveInfinity
ordouble.NegativeInfinity
. These values are instead represented as0/0
,+1/0
or-1/0
.
For more information see the section about working withNaN
andInfinity
.
Creation from double
without rounding
The double
data type in C# uses a binary floating-point representation, which complies with the IEC 60559:1989 (IEEE 754) standard for binary floating-point arithmetic. This representation can't accurately represent all decimal fractions. For example, the decimal fraction 0.1 is represented as the repeating binary fraction .0001100110011.... As a result, a double
value can only provide an approximate representation of the decimal number it's intended to represent.
Large values in the numerator / denominator
When you convert a double
to a Fraction
using the Fraction.FromDouble
method, the resulting fraction is an exact representation of the double
value, not the decimal number that the double
is intended to approximate. This is why you can end up with large numerators and denominators.
var value = Fraction.FromDouble(0.1);
Console.WriteLine(value); // Ouputs "3602879701896397/36028797018963968" which is 0.10000000000000000555111512312578
The output fraction is an exact representation of the double
value 0.1, which is actually slightly more than 0.1 due to the limitations of binary floating-point representation.
Comparing fractions created with double precision
Using a Fraction
that was created using this method for strict Equality/Comparison should be avoided. For example:
var fraction1 = Fraction.FromDouble(0.1);
var fraction2 = new Fraction(1, 10);
Console.WriteLine(fraction1 == fraction2); // Outputs "False"
If you need to compare a Fraction
created from double
with others fractions you should either do so by using a tolerance or consider constructing the Fraction
by specifying the maximum number of significant digits.
Possible rounding errors near the limits of the double precision
When a double
value is very close to the limits of its precision, Fraction.FromDouble(value).ToDouble() == value
might not hold true. This is because the numerator and denominator of the Fraction
are both very large numbers. When these numbers are converted to double
for the division operation in the Fraction.ToDouble
method, they can exceed the precision limit of the double
type, resulting in a loss of precision.
var value = Fraction.FromDouble(double.Epsilon);
Console.WriteLine(value.ToDouble() == double.Epsilon); // Outputs "False"
For more detailed information about the behavior of the Fraction.FromDouble
method and the limitations of the double
type, please refer to the XML documentation comments in the source code.
Creation from double
with maximum number of significant digits
The Fraction.FromDoubleRounded(double, int)
method allows you to specify the maximum number of significant digits when converting a double
to a Fraction
. This can help to avoid large numerators and denominators, and can make the Fraction
suitable for comparison operations.
var value = Fraction.FromDoubleRounded(0.1, 15); // Returns a fraction with a maximum of 15 significant digits
Console.WriteLine(value); // Outputs "1/10"
If you care only about minimizing the size of the numerator/denominator, and do not expect to use the fraction in any strict comparison operations, then creating an approximated fraction using the Fraction.FromDoubleRounded(double)
overload should offer the best performance.
Creation from double
with rounding to a close approximation
You can use the Fraction.FromDoubleRounded(double)
method to avoid big numbers in numerator and denominator. Example:
var value = Fraction.FromDoubleRounded(0.1);
Console.WriteLine(value); // Outputs "1/10"
However, please note that while rounding to an approximate value would mostly produce the expected result, it shouldn't be relied on for any strict comparison operations. Consider this example:
var doubleValue = 1055.05585262;
var roundedValue = Fraction.FromDoubleRounded(doubleValue); // returns {4085925351/3872710} which is 1055.0558526199999483565771772222
var literalValue = Fraction.FromDoubleRounded(doubleValue, 15); // returns {52752792631/50000000} which is 1055.05585262 exactly
Console.WriteLine(roundedValue.CompareTo(literalValue); // Outputs "-1" which stands for "smaller than"
Console.WriteLine(roundedValue.ToDouble() == doubleValue); // Outputs "true" as the actual difference is smaller than the precision of the doubles
Creation from string
The following string patterns can be parsed:
[+/-]n
where n is an integer. Examples:+5
,-6
,1234
,0
[+/-]n.m
where n and m are integers. The decimal point symbol depends on the system's culture settings. Examples:-4.3
,0.45
[+/-]n/[+/-]m
where n and m are integers. Examples:1/2
,-4/5
,+4/-3
,32/100
Example:
var value = Fraction.FromString("1,5", CultureInfo.GetCultureInfo("de-DE"))
// Returns 3/2 which is 1.5
Console.WriteLine(value);
[!TIP] You should consider the
TryParse
methods when reading numbers as text from user input. Furthermore it is best practice to always supply a culture information (e.g.CultureInfo.InvariantCulture
). Otherwise you will sooner or later parse wrong numbers because of different decimal point symbols or included Thousands character.
Here is a table presenting the different overloads, and the default parameters that are assumed for each of them:
Method | NumberStyles |
IFormatProvider |
Normalize |
---|---|---|---|
Fraction.FromString(string) |
Number |
null |
✔️ |
Fraction.FromString(string, boolean) |
Number |
null |
❓ |
Fraction.FromString(string, IFormatProvider) |
Number |
❓ |
✔️ |
Fraction.FromString(string, NumberStyles, IFormatProvider) |
❓ |
❓ |
✔️ |
Fraction.FromString(string, NumberStyles, IFormatProvider, bool) |
❓ |
❓ |
❓ |
Fraction.TryParse(string, out Fraction) |
Number |
null |
✔️ |
Fraction.TryParse(string, NumberStyles, IFormatProvider, out Fraction) |
❓ |
❓ |
✔️ |
Fraction.TryParse(ReadOnlySpan<char>, NumberStyles, IFormatProvider, bool, out Fraction) |
❓ |
❓ |
❓ |
Conversion
You can convert a Fraction
to any supported data type by calling:
.ToInt32()
.ToUInt32()
.ToInt64()
.ToUInt64()
.ToBigInteger()
.ToDecimal()
.ToDouble()
.ToString()
(using current culture).ToString(string)
(using format string and the system's current culture).ToString(string,IFormatProvider)
If the target's data type boundary values are exceeded the system will throw an OverflowException
.
Example:
var rationalNumber = new Fraction(1, 3);
var value = rationalNumber.ToDecimal();
// result is 0.33333
Console.WriteLine(Math.Round(value, 5));
String format
Specifier | Description |
---|---|
G | General format: <numerator>/<denominator> e.g. 1/3 |
n | Numerator |
d | Denominator |
z | The fraction as integer |
r | The positive remainder of all digits after the decimal point using the format: <numerator>/<denominator> or string.Empty if the fraction is a valid integer without digits after the decimal point. |
m | The fraction as mixed number e.g. 2 1/3 instead of 7/3 |
Note: The special characters #, and 0 like in #.### are not supported. Consider converting the Fraction
to decimal
/double
if you want to support the custom formats.
Example:
var value = new Fraction(3, 2);
// returns 1 1/2
Console.WriteLine(value.ToString("m", CultureInfo.GetCultureInfo("de-DE")));
Decimal Notation Formatter
The DecimalNotationFormatter
class allows for formatting Fraction
objects using the standard decimal notation, and the specified format and culture-specific format information.
Unlike standard numeric types such as double
and decimal
, there is no limit to the represented range or precision when using DecimalNotationFormatter
.
Usage
Here is a general example of how to use the DecimalNotationFormatter
:
Fraction value = Fraction.FromString("123456789987654321.123456789987654321");
string formattedValue = DecimalNotationFormatter.Instance.Format("G36", value, CultureInfo.InvariantCulture);
Console.WriteLine(formattedValue); // Outputs "123456789987654321.123456789987654321"
In this example, the Format
method is used to format the value of a Fraction
object into a string using the 'G' (General) format with a precision specifier of 36, which formats the fraction with up to 36 significant digits.
Supported Formats
The Format
method supports the following format strings. For more information about these formats, see the official .NET documentation.
Specifier | Format Name | Fraction | Format | Output |
---|---|---|---|---|
'G' or 'g' | General format | 400/3 |
'G2' | 1.3E+02 |
'F' or 'f' | Fixed-point format | 12345/10 |
'F2' | 1234.50 |
'N' or 'n' | Standard Numeric format | 1234567/1000 |
'N2' | 1,234.57 |
'E' or 'e' | Scientific format | 1234567/1000 |
'E2' | 1.23E+003 |
'P' or 'p' | Percent format | 2/3 |
'P2' | 66.67 % |
'C' or 'c' | Currency format | 1234567/1000 |
'C2' | $1,234.57 |
'R' or 'r' | Round-trip format | 1234567/1000 |
'R' | 1234.567 |
'S' or 's' | Significant Digits After Radix format | 400/3 |
'S2' | 133.33 |
Please note that the 'R' format and the custom formats are handled by casting the Fraction
to double
, which may result in a loss of precision.
Significant Digits After Radix Format
The 'S' format is a non-standard format that formats the fraction with significant digits after the radix and dynamically switches between decimal and scientific notation depending on the value of the fraction.
For fractions where the absolute value is greater than or equal to 0.001 and less than 10000, the 'S' format uses decimal notation. For all other values, it switches to scientific notation.
Here are a few examples:
Fraction value = new Fraction(1, 3);
Console.WriteLine(value.ToString("S")); // Outputs "0.33"
value = newFraction(1, 1000);
Console.WriteLine(value.ToString("S")); // Outputs "0.001"
value = new Fraction(1, 100000);
Console.WriteLine(value.ToString("S")); // Outputs "1E-05"
Mathematic operators
The following mathematic operations are supported:
.Reduce()
returns a normalized fraction (e.g. 2/4 → 1/2).Add(Fraction)
returns the sum of(a + b)
.Subtract(Fraction)
returns the difference of(a - b)
.Multiply(Fraction)
returns the product of(a * b)
.Divide(Fraction)
returns the quotient of(a / b)
.Remainder(Fraction)
returns the remainder (or left over) of(a % b)
.Negate()
returns a negated fraction (same operation as(a * -1)
).Abs()
returns the absolute value|a|
Fraction.Pow(Fraction, int)
returns a base raised to a power(a ^ exponent)
(e.g. 1/10^(-1) → 10/1)Fraction.Round(Fraction, int, MidpointRounding)
returns the fraction, which is rounded to the specified precisionFraction.RoundToBigInteger(Fraction, MidpointRounding)
returns the fraction as rounded BigInteger
As extension method:
FractionExt.Sqrt(this Fraction, int)
returns the square root, specifying the precision after the decimal point.
Example:
var a = new Fraction(1, 3);
var b = new Fraction(2, 3);
var result = a * b;
// returns 2/9 which is 0,2222...
Console.WriteLine(result);
Working with non-normalized fractions
[!IMPORTANT] For performance reasons, as of version 8.0.0, mathematical operations such as addition and multiplication no longer reduce the result to it's lowest terms, unless both operands are already simplified. This change in behavior may introduce unexpected results when, for example, calling
ToString
on aFraction
that is the result of an expression, having one or more of the values de-serialized using the defaultJsonFractionConverter
settings (i.e. without explicit reduction).
Symbol | Description |
---|---|
$NF$ | Non-normalized (possibly reducible) fraction, created with normalize: false |
$F$ | Fraction created with normalize: true (irreducible) |
$⊙$ | Mathematical operation having two operands ($+$, $-$, $*$, $/$, $mod$). |
The following rules apply:
$F ⊙ F = F$
$F ⊙ NF = NF$
$NF ⊙ F = NF$
$NF ⊙ NF = NF$
That said, the following applies for normalized fractions:
var a = new Fraction(4, 4, normalize: true); // a is 1/1
var b = new Fraction(2); // b is 2/1 (automatically normalized)
var result = a / b; // result is 1/2
$\frac{1}{1}/\frac{2}{1}=\frac{1}{2}$
However, for non-normalized fractions the following applies:
var a = new Fraction(4, 4, normalize: false);
var b = new Fraction(2); // b is 2/1 (automatically normalized)
var result = a / b; // result is 4/8
$\frac{4}{4}/\frac{2}{1}=\frac{4}{8}$
Working with NaN
and Infinity
Starting from version 8.0.0, it is now possible for a Fraction
to be constructed with 0
in the denominator.
This is typically the result of a division by zero which, depending on the sign of the dividend, now returns Fraction.PositiveInfinity
, Fraction.NegativeInfinity
or Fraction.NaN
.
Subsequent mathematical operations with these values follow the same rules, as implemented by the double
type.
For example, any number multiplied by infinity results in infinity (or negative infinity, depending on the sign), and any number divided by infinity is zero.
You can check if a Fraction
represents one of the special values using the properties:
Fraction.IsPositiveInfinity
Fraction.IsNegativeInfinity
Fraction.IsNaN
[!TIP] You could also check if a
Fraction
represents eitherNaN
orInfinity
by testing whether it'sDenomintor.IsZero
.
Equality operators
Fraction
implements the following interfaces:
IEquatable<Fraction>
,IComparable
,IComparable<Fraction>
[!IMPORTANT] Please note that the default behavior of the
.Equals(Fraction)
method has changed with version 8.0.0.Equals
now compares the calculated value from the $numerator/denominator$ ($Equals(\frac{1}{2}, \frac{2}{4}) = true$).
In case you want to compare the numerator and denominator exactly (i.e. $Equals(\frac{1}{2}, \frac{2}{4}) = false$) then you can use the new FractionComparer.StrictEquality
comparer.
That said:
var a = new Fraction(1, 2, normalize: true);
var b = new Fraction(1, 2, normalize: false);
var c = new Fraction(2, 4, normalize: false); // the fraction is not reduced
// result1 is true
var result1 = a == a;
// result2 is true
var result2 = a == b;
// result3 is true
var result3 = a == c;
// Special case:
// same behavior as with double, see https://learn.microsoft.com/en-us/dotnet/api/system.double.op_equality#remarks
// result4 is false
var result4 = Fraction.NaN == Fraction.NaN;
Under the hood
The data type stores the numerator and denominator as BigInteger
. Per default it will reduce fractions to its normalized form during creation. The result of each mathematical operation will be reduced as well. There is a special constructor to create a non-normalized fraction. Be aware that Equals
relies on normalized values when comparing two different instances.
Performance considerations
We have a suite of benchmarks that test the performance of various operations in the Fractions library. These benchmarks provide valuable insights into the relative performance of different test cases. For more detailed information about these benchmarks and how to interpret them, please refer to the Fractions Benchmarks Readme in the benchmarks subfolder.
Build from source
Just run dotnet build -c release
.
Required software frameworks
- .Net 8.0 SDK
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Fractions:
Package | Downloads |
---|---|
KubernetesClient
Client library for the Kubernetes open source container orchestrator. |
|
KubernetesClient.Models
Client library for the Kubernetes open source container orchestrator. |
|
EngineeringUnits
An Engineering version of UnitsNet - Do calculations and converts between any type of unit |
|
KubernetesClient.Classic
Client library for the Kubernetes open source container orchestrator. |
|
Fractions.Json
Converts a fraction data type to JSON by using Fraction's ToString() and FromString() methods. The class name is JsonFractionConverter. |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Fractions:
Repository | Stars |
---|---|
kubernetes-client/csharp
Officially supported dotnet Kubernetes Client library
|
|
JayArrowz/PancakeTokenSniper
BSC BNB Pancake token sniper, buy, take profit and rug check
|
Version | Downloads | Last updated | |
---|---|---|---|
8.0.4 | 12,502 | 8/19/2024 | |
8.0.3 | 8,676 | 7/22/2024 | |
8.0.2 | 3,181 | 7/4/2024 | |
8.0.1 | 310 | 7/3/2024 | |
8.0.0 | 216 | 7/3/2024 | |
7.7.1 | 10,563 | 5/6/2024 | |
7.7.0 | 4,393 | 4/17/2024 | |
7.6.1 | 1,356 | 4/15/2024 | |
7.6.0 | 1,001 | 4/13/2024 | |
7.5.0 | 296 | 4/12/2024 | |
7.4.1 | 18,557 | 3/31/2024 | |
7.4.0 | 971 | 3/31/2024 | |
7.3.0 | 3,446,566 | 10/1/2023 | |
7.2.1 | 12,951,149 | 12/11/2022 | |
7.2.0 | 383,054 | 11/9/2022 | |
7.1.0 | 1,603,136 | 2/20/2022 | |
7.0.0 | 7,741,334 | 10/6/2021 | |
6.0.0 | 383,669 | 2/18/2021 | |
5.0.1 | 10,193 | 11/13/2020 | |
5.0.0 | 1,519 | 11/13/2020 | |
4.0.1 | 26,935,630 | 6/3/2019 | |
4.0.0 | 1,719 | 6/3/2019 | |
3.0.1 | 312,187 | 5/1/2017 | |
3.0.0 | 2,104 | 5/1/2017 | |
2.0.1 | 4,661 | 10/29/2015 | |
2.0.0 | 2,141 | 10/29/2015 | |
1.2.0 | 2,474 | 1/14/2015 | |
1.1.0 | 3,272 | 2/16/2014 | |
1.0.1 | 2,588 | 11/16/2013 | |
1.0.0.1 | 2,171 | 4/21/2013 | |
1.0.0 | 2,587 | 4/14/2013 |
8.0.0
- Added support for NaN and Infinity by https://github.com/lipchev
- New properties IsNaN, IsInfinity, IsPositiveInfinity, IsNegativeInfinity by https://github.com/lipchev
- Adding a debugger display proxy by https://github.com/lipchev
- Various methods were optimized by https://github.com/lipchev
- Use the potential of Span<T> where sensible and possible (TryParse, FromDecimal) by https://github.com/lipchev
- No longer reduce non-normalized fractions when used in mathematical operations - by https://github.com/lipchev
Breaking changes
- Mathematical operations no longer automatically generate normalized fractions if one of the operands is an non-normalized fraction. This has an impact on your calculations, especially if you have used the JsonFractionConverter with default settings. In such cases, deserialized fractions create non-normalized fractions, which can lead to changed behavior when calling ToString. Please refer the README section Working with non-normalized fractions
- The default behavior of the .Equals(Fraction) method has changed: Equals now compares the calculated value from the numerator/denominator (1/2 = 2/4).
- The standard function ToString() now depends on the active culture (CultureInfo.CurrentCulture). The reason is that NaN and Infinity should be displayed in the system language or the corresponding symbol should be used.
- Argument name for Fraction.TryParse(..) changed from fractionString to value.
- A fraction of 0/0 no longer has the value 0, but means NaN (not a number). Any fraction in the form x/0 is no longer a valid number. A denominator with the value 0 corresponds to, depending on the numerator, NaN, PositiveInfinity or NegativeInfinity.