- #1
Kate2010
- 146
- 0
A text file contains 1000 characters. When the file is sent by email from one machine to another, each character (independent of other characters) has probability 0.001 of being corrupted. Use a poisson random variable to estimate the probability that the file is transferred with no errors. Compare this to the answer you get when modelling the number of errors as a binomial random variable.
Poisson:
Let x be the number of corrupted characters.
E(X) = 0.001 = a
P(X=n) = (0.001^n)(e^-0.001)/(n!)
P(X=0) = e^-0.001
Binomial:
np = 1000 x 0.001 = 1
When I approximate using poisson but with np instead I get e^-1 which is about 0.37.
This doesn't seem right?
Poisson:
Let x be the number of corrupted characters.
E(X) = 0.001 = a
P(X=n) = (0.001^n)(e^-0.001)/(n!)
P(X=0) = e^-0.001
Binomial:
np = 1000 x 0.001 = 1
When I approximate using poisson but with np instead I get e^-1 which is about 0.37.
This doesn't seem right?