Skip to main content

COMBIN

Returns the number of combinations (n choose k) for a given number of items.

CategoryMath
SyntaxCOMBIN(number, number_chosen)

Parameters

ParameterRequiredDescription
numberRequiredThe total number of items (n).
number_chosenRequiredThe number of items in each combination (k).

Example

COMBIN(10, 3)    // → 120
COMBIN(5, 2) // → 10

Auto-generated from the EngCanvas function registry.