Saturday, November 15, 2025
HomeLanguagesPython | sympy.factor_list() method

Python | sympy.factor_list() method

With the help of sympy.factor_list() method, we can get a list of factors of a mathematical expression in SymPy in the form of (factor, power) tuple.

Syntax: factor_list(expression)

Parameters:
expression – It is a mathematical expression.

Returns: Returns a list of factors of the given mathematical expression in the form of (factor, power) tuple.

Example #1:
In this example we can see that by using sympy.factor_list() method, we can get a list of factors of a given mathematical expression.




# import sympy
from sympy import * x = symbols('x')
expr = x**2 * z + 4 * x*y * z + 4 * y**2 * z
  
print("Mathematical expression : {}".format(expr))
    
# Use sympy.factor_list() method
f = factor_list(expr) 
    
print("List of factors : {}".format(f)) 


Output:

Mathematical expression : x**2*z + 4*x*y*z + 4*y**2*z
List of factors : (1, [(z, 1), (x + 2*y, 2)])

Example #2:




# import sympy
from sympy import * x = symbols('x')
expr = (x**2 - 2 * x + 1)
  
print("Mathematical expression : {}".format(expr))
    
# Use sympy.factor_list() method
f = factor_list(expr) 
    
print("List of factors : {}".format(f)) 


Output:

Mathematical expression : x**2 - 2*x + 1
List of factors : (1, [(x - 1, 2)])
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS