Recall & Review
beginner
What is the Poisson distribution used for?
The Poisson distribution models the number of times an event happens in a fixed interval of time or space, when events occur independently and at a constant average rate.
Click to reveal answer
beginner
What parameter does the Poisson distribution use?
It uses a single parameter called lambda (λ), which represents the average number of events in the interval.
Click to reveal answer
intermediate
How do you calculate the probability of exactly k events in Poisson distribution?
The probability is given by P(k) = (λ^k * e^(-λ)) / k!, where k is the number of events, λ is the average rate, and e is Euler's number.
Click to reveal answer
beginner
In Python's scipy library, which function generates Poisson probabilities?
The function is scipy.stats.poisson.pmf(k, mu), where k is the number of events and mu is the average rate λ.
Click to reveal answer
beginner
What real-life example fits the Poisson distribution?
Counting the number of emails you receive in an hour, assuming emails come independently and at a steady average rate.
Click to reveal answer
What does the parameter λ represent in a Poisson distribution?
✗ Incorrect
λ (lambda) is the average number of events expected in the fixed interval.
Which scipy function calculates the probability mass function for Poisson?
✗ Incorrect
pmf stands for probability mass function, which gives the probability of exactly k events.
If λ = 3, what is the probability of 0 events occurring?
✗ Incorrect
P(0) = (3^0 * e^(-3)) / 0! = e^(-3).
Poisson distribution assumes events occur:
✗ Incorrect
Poisson assumes independent events with a steady average rate.
Which of these is NOT a typical use of Poisson distribution?
✗ Incorrect
Height is continuous and usually modeled by normal distribution, not Poisson.
Explain the Poisson distribution and when it is used.
Think about counting rare events over time or space.
You got /4 concepts.
Describe how to calculate the probability of k events using the Poisson formula.
Remember the role of e and factorial in the formula.
You got /4 concepts.