gmp_binomial
is a function in PHP that calculates the binomial coefficient.
gmp_binomial(GMP|int|string $n, int $k): GMP
n
: can be a numeric string, GMP object, or type int.
k
: number of combinations.
The function returns the binomial coefficient .
<?php$result = gmp_binomial('4',2);echo "The binomial coefficient of the result is ".$result;?>
The binomial coefficient of the result is 6