KomuraSoft LLC
Chapter 7

Comprehension check — comprehensive review and full-question audit

On a fresh case separate from the running example, sweep through interval scaling, the pmf, cumulative probability, the mode, the sum of Poissons, relative spread, simulator readouts, and minimal-implementation reading in one pass.

Run the full flow on a fresh case

Here we check whether every formula so far carries over intact to a different case. We revisit interval scaling, the pmf, cumulative probability, the mode, and the sum of Poissons — all in one pass.

Interval scalingP(X = 0)P(X = 2)P(X ≤ 1)Poisson sum
Intro pmf Mean Interval Impl.

The course at a glance: introduction → pmf → mean and variance → interval scaling → implementation.

The case for the comprehensive review

Suppose chat inquiries arrive at an average of 3 per 30 minutes. We will also consider a separate monitoring-alert stream that averages 2 per 30 minutes.

ItemContent
InquiriesAverage of 3 per 30 minutes
Monitoring alertsAverage of 2 per 30 minutes (independent)
Approximatione^-3 ≈ 0.0498

Comprehensive review — run the full flow on a fresh case

Suppose chat inquiries arrive at an average of 3 per 30 minutes. Suppose also a separate monitoring-alert stream averages 2 per 30 minutes (independent). Feel free to use e^-3 ≈ 0.0498.

Q1. For the inquiry stream (3 per 30 minutes on average), what is λ for a 10-minute window?

Q2. For the inquiry stream (3 per 30 minutes on average), what is the probability P(X = 0) of exactly 0 events in 30 minutes?

Q3. Under the same conditions, what is P(X = 2)?

Q4. Under the same conditions, what is P(X ≤ 1)?

Q5. For the inquiry stream (3 per 30 minutes on average), which is the most likely count?

Q6. Combining inquiries (average 3) and monitoring alerts (average 2), what is λ for the total count over 30 minutes?

Q7. Comparing a system with an average of 3 per 30 minutes against one with an average of 12 per 2 hours, which has the smaller relative spread (coefficient of variation) in the sense of std. dev. / mean?

Comprehensive review — simulator readouts and minimal implementation

Confirm that the Chapter 5 simulator and the Chapter 6 minimal implementation are consistent with the formulas you have been computing by hand.

Q1. When you select the Very busy preset (λ = 9) in the Chapter 5 simulator, which value should the relative spread (coefficient of variation, std. dev. / mean) display?

Q2. How should the loop condition while (product > limit) in samplePoissonKnuth from Chapter 6 be interpreted?

Where this course leaves you

  • When you see count data over a fixed window, reaching for Poisson becomes a natural instinct.
  • You can compute P(X = k) and P(X ≤ k) by hand for small λ.
  • You can explain mean = variance = λ, interval scaling, and the sum of Poissons both in words and in formulas.
  • You can read the minimal vanilla JavaScript implementation and drop it into a small calculator of your own.