sympy.powdenest()方法

sympy.powdenest()方法

借助于sympy.powdenest()方法,我们可以用恒等式(x^a)^b=x^ab)来简化数学表达式的幂次。

语法:sympy.powdenest()

Return:使用identity返回简化的数学表达式。

sympy.powdenest()方法 例# 1:

在本例中,我们可以看到,通过使用sympy.powdenest()方法,我们能够使用恒等式i.e (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)

Output :

x**6

sympy.powdenest()方法 例# 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)

Output :

x**(2*a + 2*b)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程