Lots of people throw coin until get a tail. It means each person should immediately stop, when get exactly one tail. The odds of someone having a head or a tail on any given throw is equal.
Each person will have a sequence of zero or more heads followed by a single tail.
That is, if "H" indicates a head and "T" indicates a tail, the sequence of results will look like one of:
- T
- HT
- HHT
- HHHT
- HHHHT
- And so on
Question
What will the ratio of heads and tails be on very large N?
My thought: we could say that sequences have the following probabilities:
P(T) = 1/2; Tails_Count = 1
P(HT) = 1/4; Tails_Count = 2
P(HHT) = 1/8; Tails_Count = 3
P(HHHT) = 1/16; Tails_Count = 4
P(HHHHT) = 1/32; Tails_Count = 5
And so on
We know that each person will have exactly 1 tail. I'm confused about how to calculate heads average count.
If only two person throw coins, than one person can get sequence like HT and the second person can get sequence like HHHHHHHHHT.
It means that we have 10H and 2T.
On the other hand probability of getting HHHHHHHHHHT is $${1 \ \over 2^{10}}$$ which is almost impossible.
Staring this momment I have no idea how to caculate ratio of heads and tails.