当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.powdenest()用法及代码示例


借助sympy.powdenest()方法,我们可以通过使用等式简化数学表达式的幂(x^a)^b=x^ab

用法: sympy.powdenest()
返回: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)



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | sympy.powdenest() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。