...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
#include <boost/math/special_functions/binomial.hpp>
namespace boost{ namespace math{ template <class T> T binomial_coefficient(unsigned n, unsigned k); template <class T, class Policy> T binomial_coefficient(unsigned n, unsigned k, const Policy&); }} // namespaces
Returns the binomial coefficient: nCk.
Requires k <= n.
The final Policy argument is optional and can be used to control the behaviour of the function: how it handles errors, what level of precision to use etc. Refer to the policy documentation for more details.
May return the result of overflow_error if the result is too large to represent in type T.
The accuracy will be the same as for the factorials for small arguments (i.e. no more than one or two epsilon), and the beta function for larger arguments.
The spot tests for the binomial coefficients use data generated by functions.wolfram.com.
Binomial coefficients are calculated using table lookup of factorials where possible using:
nCk = n! / (k!(n-k)!)
Otherwise it is implemented in terms of the beta function using the relations:
nCk = 1 / (k * beta(k, n-k+1))
and
nCk = 1 / ((n-k) * beta(k+1, n-k))