Friday, February 6, 2026
HomeLanguagesPython | sympy.expand_func() method

Python | sympy.expand_func() method

With the help of sympy.expand_func() method, we can expand special functions in terms of some mathematical identities.

Syntax: expand_func(expression)

Parameter:
expression – It is mathematical expression which is to expanded.

Returns: Returns a mathematical expression corresponding to the input in terms of some mathematical identities.

Example #1:




# import sympy 
from sympy import * 
  
x = symbols('x')
expr = gamma(x + 3)
print("Expression = {}".format(expr))
   
# Use sympy.expand_func() method 
expand_expr = expand_func(expr)  
      
print("Expanded Expression : {}".format(expand_expr))  


Output:

Expression = gamma(x + 3)
Expanded Expression : x*(x + 1)*(x + 2)*gamma(x)

Example #2:




# import sympy 
from sympy import * 
  
x = symbols('x')
expr = binomial(x, 3)
print("Expression = {}".format(expr))
   
# Use sympy.expand_func() method 
expand_expr = expand_func(expr)  
      
print("Expanded Expression : {}".format(expand_expr))  


Output:

Expression = binomial(x, 3)
Expanded Expression : x*(x - 2)*(x - 1)/6
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32491 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11987 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12075 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7237 POSTS0 COMMENTS
Thapelo Manthata
6947 POSTS0 COMMENTS
Umr Jansen
6933 POSTS0 COMMENTS