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

2 COMMENTS

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6922 POSTS0 COMMENTS
Nicole Veronica
12039 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12144 POSTS0 COMMENTS
Shaida Kate Naidoo
7059 POSTS0 COMMENTS
Ted Musemwa
7300 POSTS0 COMMENTS
Thapelo Manthata
7016 POSTS0 COMMENTS
Umr Jansen
7005 POSTS0 COMMENTS