If the probability of a bit is received corrupted is P and there are n bits in a packet. Then what is the probability of a failed transmission?
My attempt- Probability of a successful transmission == probability that all bits in a frame was received successfully == (1-P)^n. So, the probability of a successful transmission = 1 - (1-P)^n now the issue is, how 1 - (1-P)^n approximates to n*P (I saw it from a slide)? Or is my calculation wrong?
Thanks.
Hint: Use the first order (taylor/binomial) approximation of $(1-p)^n$. When $p$ is small, the other terms can be ignored for practical purposes.
$$(1-p)^n=1-np+\frac{n(n-1)}{2}p^2-...\approx 1-np$$