Python sympy.asin()方法
在sympy.asin(x)方法的帮助下,我们能够找到正弦theta的逆值。
语法 : sympy.asin(x)
返回:返回反正弦theta的值。
例子#1 :
在给定的例子中,我们可以看到,通过使用sympy.asin(x)方法,我们可以找到正弦theta的逆。
# import sympy
from sympy import * x, y, z = symbols('x y z')
# Using sympy.asin() method
gfg_exp = asin(1)
print(gfg_exp)
输出 :
pi/2
例子#2 :
# import sympy
from sympy import * x, y, z = symbols('x y z')
# Using sympy.asin() method
gfg_exp = asin(1 / 2)
print(gfg_exp)
输出 :
0.523598775598299