Friday, September 26, 2025
HomeLanguagesPython | sympy.binomial_coefficients() method

Python | sympy.binomial_coefficients() method

With the help of sympy.binomial_coefficients() method, we can find binomial coefficients for a given integer. The method returns a dictionary containing pairs {(k1, k2) : C_kn} where C_kn are binomial coefficients and n=k1+k2.

Syntax: binomial_coefficients(n)

Parameter:
n – It denotes an integers.

Returns: Returns a dictionary containing pairs (k1, k2) : Ckn where Ckn are binomial coefficients and n = k1 + k2.

Example #1:




# import binomial_coefficients() method from sympy
from sympy.ntheory import binomial_coefficients
  
n = 6
  
# Use binomial_coefficients() method 
binomial_coefficients_n = binomial_coefficients(n) 
      
print("binomial_coefficients({}) = {} ".format(n, binomial_coefficients_n))


Output:

binomial_coefficients(6) = {(3, 3): 20, (1, 5): 6, (6, 0): 1, (0, 6): 1, (4, 2): 15, (5, 1): 6, (2, 4): 15}

Example #2:




# import binomial_coefficients() method from sympy
from sympy.ntheory import binomial_coefficients
  
n = 9
  
# Use binomial_coefficients() method 
binomial_coefficients_n = binomial_coefficients(n) 
      
print("binomial_coefficients({}) = {} ".format(n, binomial_coefficients_n))


Output:

binomial_coefficients(9) = {(2, 7): 36, (9, 0): 1, (8, 1): 9, (5, 4): 126, (6, 3): 84, (4, 5): 126, (1, 8): 9, (3, 6): 84, (0, 9): 1, (7, 2): 36} 
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32321 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6683 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6795 POSTS0 COMMENTS
Ted Musemwa
7071 POSTS0 COMMENTS
Thapelo Manthata
6757 POSTS0 COMMENTS
Umr Jansen
6762 POSTS0 COMMENTS