Python sympy.expand_trig()方法

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 

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程