Chapter Contents

Previous

Next
COMB

COMB



Computes the number of combinations of n elements taken r at a time and returns a value

Category: Mathematical


Syntax
Arguments
Details
Examples
See Also

Syntax

COMB(n, r)

Arguments

n
is an integer that represents the total number of elements from which the sample is chosen.

r
is an integer that represents the number of chosen elements.
Restriction: r [le] n


Details

The mathematical representation of the COMB function is given by the following equation:

[IMAGE]

with n [ge] 0, r [ge] 0, and n[ge] r.

If the expression cannot be computed, a missing value is returned.


Examples

SAS Statements Result
x=comb(5,1);
5


See Also

Functions:
FACT
PERM


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.