z = ±1: ±34% on each side from the center (total 68% within ±1).
z = ±2: central 95% (34% between 1 and 2, etc.).
z = ±3: central 99.7%.
Important: If you know probabilities for a normal, you can solve for X values using xp = µ + σ zp, and if you know X, you can compute p via p = Φ((x−µ)/σ).
5.4 The Binomial and Poisson Distributions
Bernoulli process: a sequence of n independent, identical trials with two outcomes (success with probability p, failure with probability 1−p).
A binomial random variable X is the number of successes in n trials: X ∈ {0,1,2,…,n}.
Binomial distribution (X ~ Binomial(n, p)):
PMF: P(X=x)=(xn)px(1−p)n−x,x=0,1,2,…,n.
Mean: E[X]=μ=np.
Variance: Var(X)=σ2=np(1−p).
Poisson process and Poisson distribution (X ~ Poisson(µ)):
Poisson PMF: P(X=x)=x!e−μμx,x=0,1,2,….
Mean: E[X]=μ.
Variance: Var(X)=σ2=μ.
When to use each:
Binomial: fixed number of independent trials n with constant p.
Poisson: number of events in a fixed interval when events occur with a constant mean rate and independently of each other (Poisson process).
Excel/R helpers:
Binomial: BINOM.DIST, dbinom, pbinom.
Poisson: POISSON.DIST, dpois, ppois.
Examples
Binomial example 1: 30% of customers react positively to new web features; n = 5.
Binomial example 2: 100 adults, p = 0.68; X = number of Facebook users.
a) P(X = 70) ≈ 0.0791 (via BINOM.DIST(70, 100, 0.68, FALSE)). Also dbinom(70, 100, 0.68).
b) P(X ≤ 70) ≈ 0.7007 (via BINOM.DIST(70, 100, 0.68, TRUE)). Also pbinom(70, 100, 0.68).
Poisson process probabilities and common expressions:
Example: 18 visits per 30 days on average for a Starbucks customer.
a) Over a 5-day period, mean visits μ_5 = 3 (since 18 per 30 days ⇒ 18 × (5/30) = 3).
b) P(X = 5) = e^{−3} 3^5 / 5! ≈ 0.1008.
General idea: the probability of a count in a fixed interval uses λ (the mean number of events in that interval).
It is common to scale the interval to compute the corresponding μ for that period: μ{new} = λ × (newintervallength / originalinterval_length).
Poisson examples with weekly timeframe:
Example: Craft breweries open at an average rate of 1.5 per day; over a week (7 days), mean μ = 1.5 × 7 = 10.5.
a) P(X ≤ 10) ≈ 0.5207 (Poisson with λ = 10.5).
b) P(X = 10) ≈ 0.1236.
Quick references:
Excel: POISSON.DIST for Poisson probabilities.
R: dpois for PMF, ppois for CDF; dbinom and pbinom for binomial probabilities.
Connections, Implications, and Practical Notes
Choice of model depends on the nature of the data: continuous (normal, uniform) vs discrete (binomial, Poisson).
The normal distribution underpins many statistical methods (sampling distributions, confidence intervals, hypothesis tests) due to the central limit theorem and its mathematical properties.
For continuous variables, we rely on densities and CDFs; for discrete variables, we rely on PMFs and cumulative probabilities.
In practice, use standardization (z-scores) and inverse CDFs (quantiles) to transform problems into standard normal computations or to find threshold values corresponding to desired probabilities.
When n is large or p is near 0 or 1, Poisson approximations to Binomial can be useful, though exact Binomial calculations are straightforward with software.