I got this Poisson distribution problem.
There's a clothes shop, and average number of customers per 1 hour are 5 men , 10 women, independent each other, in Poisson distribution. If for 30 minutes there had been totally 10 customers, what's the probability of women customer more than 2?
- This is how I solved. Poisson average of man customers for 30 minute = m = 2.5
women = w = 5
all = a = 7.5
then the solution is p(w>2 | a=10)
=1- [ p(w>2 ∩ a=10)/p(a=10)]
= 1- { [p(w=0)*p(m=10) + p(w=1) * p(m=9)]/p(a=10)
(solve with Poisson formula)
=0.9996
I'm not quite sure if this is right,
because not sure if p(w=1 ∩ a=10) can be interpreted right into
p(w=1) * p(m=9)
. Is this approach right? or am I missing something Thank you verymuch