RUber said:
If p is the probability of a win, then p^k is the probability of winning k times in a row.
If you have n trials and only win k times, then you lose the rest (n-k) of te trials. So the probability of winning the first k and then losing the rest would be ##p^k(1-p)^{n-k}##.
Now comes the combination part.
As I said, the probability of winning the first k and losing the rest is that piece of the formula. But the probability would be the same if you lost the first n-k and won the last k.
In all, you have to add up all the possible ways to win k times out of n. Each way has the same probability, so the total probability of winning k times is the probability of one of the ways times the number of combinations of k wins and n-k losses.
Thank you, this outline of all the constituents really helped, I was able to visualized how it was put together here.
Ray Vickson said:
Suppose n = 5, for example, and k = 2; so, we toss a coin 5 times and are interested in the event {2 heads, 3 tails}. We can list all the possible outcomes in order from toss 1, toss 2, ..., toss 5:
(1) HHTTT
(2) HTHTT
(3) HTTHT
(4) HTHTT
(5) HTTTH
(6) TTTHH
(7) TTHTH
(8) TTHHT
(9) THHTT
(10) THTHT
If p = probability of H in one toss (and 1 = 1-p = probability of T), ask yourself: what is P(outcome 1)? What is P(outcome 2)? ... P(outcome 10)? Rember, we are assuming independent tosses, so getting H or T on one toss does not affect in any way the probability of H or T in any other toss.
Now put it all together: what is P(2 H and 3 T)?
Okay, this exercise helped, a lot. I think a lot of my confusion was stemming from the fact that the game of flipping a coin, both the win, and lose have equal probability, so I kept just writing the probability as ## p^{n} ##, which would work in the case of a coin, but since we are generalizing it for other scenarios, we need to take into account the fact that the probability of losing and winning could be different, and it really showcased the need for that combination as well.
So, I ended up doing outcome 1, and outcome 2, that was where I realized the point of the ## 1 - p = p(T) ##.
## P(O_1) = p * p * (1-p) * (1-p) * (1-p) = p^{2}(p-1)^{3} ##
## P(O_2) = p * (1-p) * p * (1-p) * (1-p) = p^{2}(p-1)^{3} ##
That's kinda when I realized you could generalize it as ## p^{k}(1-p)^{(n-k)} ##...
Then, to take into account all the different combinations, you would have to use the ## \binom{n}{k} ##, to take into account the probability of all those outcomes together.
## P(k,n) = \binom{n}{k} p^{k}(1-p)^{(n-k)} ##
To solve the problem...
## P(2H and 3T) = \binom{5}{2} p^{2}(1-p)^{3} = \binom{5}{2} (\frac 1 2)^{5} = (10)(\frac {1} {32}) = .3125 = 31.25 \% ##