Python sympy.integration()使用极限值
在sympy.integration(expression, limit)方法的帮助下,我们可以通过sympy.integration(expression, limit)方法,用变量的形式找到数学表达式的积分。
语法 : sympy.integrate(expression, reference variable, limit)
返回:返回数学表达式的积分。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.integration(expression, limits)方法,我们可以找到使用极限的数学表达式与变量的积分。在这里,我们也使用symbols()方法来声明一个变量为符号。
# import sympy
from sympy import *
x, y = symbols('x y')
gfg_exp = cos(x)
print("Before Integration : {}".format(gfg_exp))
# Use sympy.integrate() method
intr = integrate(gfg_exp, (x, -oo, oo))
print("After Integration : {}".format(intr))
输出 :
Before Integration : cos(x)
After Integration : AccumBounds(-2, 2)
例子#2 :
# import sympy
from sympy import *
x, y = symbols('x y')
gfg_exp = tan(x)
print("Before Integration : {}".format(gfg_exp))
# Use sympy.integrate() method
intr = integrate(gfg_exp, (x, -1, 1))
print("After Integration : {}".format(intr))
输出 :
Before Integration : tan(x)
After Integration : 0