Python sympy.expand_trig()方法
在sympy.expand_trig(expn)方法的帮助下,我们能够展开三角函数方程。
语法 : sympy.expand_trig(expn)
返回:返回扩展的三角函数表达式。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.expand_trig(expn)方法,我们能够找到三角函数的扩展形式。
# Import sympy
from sympy import *
# Define symbols and trigo expression
x, y = symbols('x y')
expn = sin(2 * x) + cos(2 * x)
# Use sympy.expand_trig(expn) method
gfg = expand_trig(expn)
print(gfg)
输出 :
2*sin(x)*cos(x) + 2*cos(x)**2 – 1
例子#2 :
# Import sympy
from sympy import *
# Define symbols and trigo expression
x, y = symbols('x y')
expn = sin(2 * x)**2 + cos(2 * x)**2
# Use sympy.expand_trig(expn) method
gfg = expand_trig(expn)
print(gfg)
输出 :
(2*cos(x)**2 – 1)**2 + 4*sin(x)**2*cos(x)**2