字符串的概率在同一位置

时间:2015-01-10 11:04:41

标签: probability

任何概率大师都能帮我计算这些概率吗?

我有114个长度为15000的字符串,最多可以包含80个字符串。 采取两个位置,在该位置有两个字符串的概率是多少?三个字符串怎么样?

不同数字的同样问题

我有49个长度为10000的字符串,最多可以有1093个字符串。 采取两个位置,在该位置有两个字符串的概率是多少?三个字符串怎么样?

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

这是公式:

(a/b)n * 100  //where a is the number of ones and b is the total amount of characters and n the exponentiation.

伪代码:

float probability = pow( (str.match(1).length / str.length), strAmount ) * 100;

以百分比回答。