Python| sympy.powdenest() 方法
借助sympy.powdenest()
方法,我们可以使用恒等式简化数学表达式的幂,即(x^a)^b=x^ab
。
Syntax : sympy.powdenest()
Return : Return the simplified mathematical expression using identity.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.powdenest()
方法,我们能够使用恒等式简化数学表达式的幂,即(x^a)^b=x^ab
。
# import sympy
from sympy import *
x, y = symbols('x y')
gfg_exp = (x**2)**3
# Use sympy.powdenest() method
fact = powdenest(gfg_exp)
print(fact)
输出 :
x**6
示例 #2:
# import sympy
from sympy import *
x, y, z, a, b = symbols('x y z a b')
gfg_exp = (x**(a + b))**2
# Use sympy.powdenest() method
fact = powdenest(gfg_exp)
print(fact)
输出 :
x**(2*a + 2*b)