Click or drag to resize
BigRationalLeastCommonDenominator Method

[This is preliminary documentation and is subject to change.]

Least Common Denominator (LCD) The LCD is the least common multiple of the two denominators. For instance, the LCD of {1/2, 1/4} is 4 because the least common multiple of 2 and 4 is 4. Likewise, the LCD of {1/2, 1/3} is 6. To find the LCD: 1) Find the Greatest Common Divisor (GCD) of the denominators 2) Multiply the denominators together 3) Divide the product of the denominators by the GCD

Namespace: NForza.Transit.Numerics
Assembly: Transit (in Transit.dll) Version: 0.8.1-alpha
Syntax
C#
public static BigInteger LeastCommonDenominator(
	BigRational x,
	BigRational y
)

Parameters

x
Type: NForza.Transit.NumericsBigRational
The x.
y
Type: NForza.Transit.NumericsBigRational
The y.

Return Value

Type: BigInteger

[Missing <returns> documentation for "M:NForza.Transit.Numerics.BigRational.LeastCommonDenominator(NForza.Transit.Numerics.BigRational,NForza.Transit.Numerics.BigRational)"]

See Also