-1

I'm looking for an equation that will work for any positive integer n. I know that multiple coin flips approaches a normal distribution, but I'm looking for answers that deal specifically with random bits or coin flips. Basically, you can't have 4.2 coins land on heads.

Gregory Grant
  • 14,874
  • It sounds like you're asking for an exact closed form for the sum $\sum_{k=\lceil 3n/4 \rceil}^{n} {{n}\choose{k}}$. I don't think there is one. – mjqxxxx May 25 '15 at 22:47

1 Answers1

0

By definition it is: $$\begin{align} \Bbb P \quad & = \quad \sum_{k=\lceil 3n/4\rceil}^n \binom{n}{k}p^k(1-p)^{n-k} \\[1ex] & = \quad \tfrac 1{2^n}\sum_{k=\lceil 3n/4\rceil}^n \binom{n}{k} & : p=1/2 \end{align}$$

And that's why Normal approximations get used.

Graham Kemp
  • 129,094