Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 981 Bytes

File metadata and controls

38 lines (22 loc) · 981 Bytes

Binomial

Binomial(n, k)

returns the binomial coefficient of the 2 integers n and k

For negative integers k this function will return 0 no matter what value is the other argument n.

See:

Examples

>> Binomial(4,2)
6
 
>> Binomial(5, 3)   
10   

Implementation status

  • ☑ - partially implemented

Github