已知有一組值以及對應的機率,此函式可計算隨機選擇的值剛好在兩組限制範圍內的機率。
使用範本
PROB({1,2,3,4},{0.25,0.25,0.25,0.25},3)
PROB(A2:A100,B2:B100,C2,C3)
語法
PROB(data, probabilities, low_limit, [high_limit])
data
要列入計算的資料集所屬陣列或範圍。機率
- Array or range containing probabilities corresponding todata
.- Each value in
機率
must be greater than0
and less than or equal to1
.
- Each value in
下限
- The lower bound on the value range for which to calculate the probability.上限
- [ OPTIONAL -下限
by default ] - The 計算機率時,值所在範圍的最高限制。 概率- IF
上限
is omitted,PROB
calculates the probability that a value chosen at random is exactly equal to下限
.
- IF
附註
- The number of values in
data
和機率
must be the same.
另請參閱
CRITBINOM
: 計算累積二項分佈小於或等於指定機率的最小值。
BINOMDIST
: 此函式可在已知特定大小母體包含特定成功次數 (抽出放回) 的前提下,計算試驗特定次數時可抽出特定成功次數的機率 (或成功最多次數)。