Sunday, October 6, 2024
Google search engine
HomeLanguagesPython | sympy.expand_power_base() method

Python | sympy.expand_power_base() method

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

Syntax : sympy.expand_power_base()
Return : Return the simplified mathematical expression using base.

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




# import sympy
from sympy import * 
  
x, y = symbols('x y')
gfg_exp = x**2 + 2 * x*y + y**2
   
# Use sympy.expand_power_base() method
fact = expand_power_base(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_base() method
fact = expand_power_base(gfg_exp)
   
print(fact)


Output :

x**a*x**b

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

Most Popular

Recent Comments