📜  Python中的 sympy.stats.Arcsin()

📅  最后修改于: 2022-05-13 01:55:41.108000             🧑  作者: Mango

Python中的 sympy.stats.Arcsin()

借助sympy.stats.Arcsin()方法,我们可以得到表示 arcsin 分布的随机变量。

示例 #1:
在这个例子中我们可以看到,通过使用sympy.stats.Arcsin()方法,我们可以通过这个方法得到 arcsin 分布。

# Import sympy and Arcsin
from sympy.stats import Arcsin, density
from sympy import Symbol, simplify
  
a = Symbol("a", real = True)
b = Symbol("b", real = True)
z = Symbol("z")
  
# Using sympy.stats.Arcsin() method
X = Arcsin("x", a, b)
gfg = density(X)(z)
  
print(gfg)

输出 :

示例 #2:

# Import sympy and Arcsin
from sympy.stats import Arcsin, density
from sympy import Symbol, simplify
  
a = -4
b = 8
z = Symbol("z")
  
# Using sympy.stats.Arcsin() method
X = Arcsin("x", a, b)
gfg = density(X)(z)
  
print(gfg)

输出 :