The probability distribution of the Poisson random variable X, representing the number of outcomes occurring in a given time interval or specified region denoted by t, is
p(x;λt)=x!e−λt(λt)x where λ is the average number of outcomes per unit time
Given that
λ=2 hours107,t=24 hoursa. What is the probability that more than 100 cars pass her on any given Saturday?
The R ppois function provides the left cumulative probabilities, as in Pr(X ≤ x).
P(X>100)=P(≥101)=1−P(X≤100)==1−ppois(x=100,lambda=1284)==1−1.938949×10−405≈1
b. Determine the probability that no cars pass.
The R dppois s function provides the individual Poisson mass function probabilities Pr(X = x) for the Poisson distribution.
P(X=0)=dpois(x=0,lambda=1284)==2.322123×10−558≈0
Comments