Special.Combinations Method

Gets the number of ways of picking k unordered outcomes from n possibilities.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static double Combinations(
	int n,
	int k
)

Parameters

n  Int32
The number of possibilities.
k  Int32
The number of outcomes to pick.

Return Value

Double
The number of ways of picking k unordered outcomes from n possibilities.

See Also