Monday, July 6, 2026
HomeLanguagesPython | sympy.primitive() method

Python | sympy.primitive() method

With the help of sympy.primitive() method, we can find the common part of a mathematical expression by using sympy.primitive() method.

Syntax : sympy.primitive()
Return : Return a tuple having common part separated from mathematical expression.

Example #1 :
In this example we can see that by using sympy.primitive() method, we are able to find the common part from the mathematical expression.




# import sympy
from sympy import * 
  
x, y = symbols('x y')
  
# Using sympy.primitive() method
gfg = (3 * x + 9 * y).primitive()
  
print(gfg)


Output :

(3, x + 3*y)

Example #2 :




# import sympy
from sympy import * 
  
x, y = symbols('x y')
  
# Using sympy.primitive() method
gfg = (2 * x / 7 + 4 * y / 14).primitive()
  
print(gfg)


Output :

(2/7, x + y)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7263 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS