SpecialFunctionsBinomialCoefficient Method

Computes the Binomial coefficient of the specified pair of integers.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static double BinomialCoefficient(
	int n,
	int k
)

Parameters

n  Int32
The number of available items.
k  Int32
The number of items to be taken at a time.

Return Value

Double
The value taken on by the Binomial coefficient.

Remarks

This is the number of combinations of n items taken k at a time.

Exceptions

ArgumentOutOfRangeExceptionn is negative.
-or-
k is negative.
-or-
k is greater than n.

See Also