Poisson Probability Distribution

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 12K views
exitwound
Messages
291
Reaction score
1

Homework Statement



Suppose that .10% of all computers of a certain type experience CPU failure during the warranty period. Consider a sample of 10,000 computers.

a.)What are the expected value and standard deviation of the number of computers in the sample that have the defect?
b.) What is the (approximate) probability that more than 10 sampled computers have the defect?
c.) What is the (approximate) probability that no sampled computers have the defect?

Homework Equations



[tex]p(x;\lambda )=\frac{e^{-\lambda}\lambda^x}{x!}[/tex]

The Attempt at a Solution



a.) E(X) of a poisson distribution is [itex]\lambda[/itex] which is np which is (10,000)(.001)=10.

V(X) is also [itex]\lambda[/itex] or 10.

The standard deviation is the squareroot of V(X) or sqrt(10)?

b.) To do this, would I take the sum of the probability of 10 machines having a failure to infinity cpus failing? (i.e. p(10;10) + p(11;10) + ... p(inf,10))

[tex]p(x\geq 10;10)=\sum_{x=10}^{\infty} {\frac{e^{-10}10^x}{x!}}[/tex]

c.) To find this, would I use p(0;10)? If so:

[tex]p(0;10)={\frac{e^{-10}10^0}{0!}}[/tex]

[tex]p(0;10)={\frac{e^{-10}(1)}{1}}=e^{-10}[/tex]
 
Physics news on Phys.org
Looks fine except in the second part, more than 10 probably means strict inequality and since poisson is discrete, you probably need to index the sum starting at x = 11.
 
Ah yes. Thank you :)