由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 弱人问个题
相关主题
[合集] toss a coin 100 times, what's the probability at least请教一个sas求和的问题
F***Book interview求教一道SAS题
求问一道扔硬币求期望的面试题R function 求和问题
##如果logistic回归自变量x不是线性的,怎么办?##请教一道数列求和题 (转载)
外行问个题。请教两个独立NB分布的和是什么
A question on Stat紧急求助:有没有这个式子的approximation? (转载)
请问 1*1 + 2*2 + 3*3 + 4*4 + ... + n*n = ?A SAS problem
100个人测身高[合集] 问个概率问题
相关话题的讨论汇总
话题: bins话题: balls话题: arrbin话题: number话题: step
进入Statistics版参与讨论
1 (共1页)
i***q
发帖数: 1095
1
Suppose that balls are tossed into b bins. Each toss is independent, and
each ball is equally likely to end up in any bin. What is the expected
number of ball tosses before at least one of the bins contains two balls?
z****e
发帖数: 2024
2
number of ball tosses before at least one of the bins contains two balls
注意,这里要的是before。就是 step to reach one of the bins contains two
balls 再减一。
解析结果是:
\sum_{k=1}^{b-1}\frac{(b-1)!/(k-1)!}{b^(b-k)}+1
或者写成:
求和从k=1到b-1,求和对象:[(b-1)!/(k-1)!]/b^(b-k)。求和以后加一,就是所要结果。
数值模拟:
%matlab simulation for b=25;
b=25;
NT=5000;
samplesum=0;
for i=1:NT
counter=0;
arrbin=zeros(1,b);
while 1
counter=counter+1;
tossbin=ceil(rand()*b);
arrbin(tossbin)=arrbin(tossbin)+1;
if max(arrbin)==2
break;
z****e
发帖数: 2024
3
几个结果:
b=1, step number 1.
b=10, step number 3.66.
b=15, step number 4.55.
b=30, step number 6.55.
key hint:
N_k=k/b+(b-k)/b*(N_{k+1}+1)=(b-k)/b*N_{k+1}+1;
1 (共1页)
进入Statistics版参与讨论
相关主题
[合集] 问个概率问题外行问个题。
in =option的一道题A question on Stat
title statement请问 1*1 + 2*2 + 3*3 + 4*4 + ... + n*n = ?
为什么有些函数在我的R中无法执行呢?100个人测身高
[合集] toss a coin 100 times, what's the probability at least请教一个sas求和的问题
F***Book interview求教一道SAS题
求问一道扔硬币求期望的面试题R function 求和问题
##如果logistic回归自变量x不是线性的,怎么办?##请教一道数列求和题 (转载)
相关话题的讨论汇总
话题: bins话题: balls话题: arrbin话题: number话题: step