Wednesday, February 4, 2026
HomeLanguagesPython | sympy.expand_power_exp() method

Python | sympy.expand_power_exp() method

With the help of sympy.expand_power_exp() method, we can simplify the powers of mathematical expression by using sympy.expand_power_exp() method.

Syntax : sympy.expand_power_exp()
Return : Return the simplified mathematical expression.

Example #1 :
In this example, we can see that by using sympy.expand_power_exp() method, we are able to simplify the powers of mathematical expression.




# import sympy
from sympy import * 
  
x, y = symbols('x y')
gfg_exp = x**2 + 2 * x*y + y**2
   
# Use sympy.expand_power_exp() method
fact = expand_power_exp(gfg_exp)
   
print(fact)


Output :

x**2 + 2*x*y + y**2

Example #2 :




# import sympy
from sympy import * 
  
x, y, z = symbols('x y z')
gfg_exp = x**(a + b)
   
# Use sympy.expand_power_exp() method
fact = expand_power_exp(gfg_exp)
   
print(fact)


Output :

x**a*x**b

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

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
125 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11980 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6936 POSTS0 COMMENTS
Umr Jansen
6919 POSTS0 COMMENTS