The table below collects the full anatomy of the geometric distribution into a single reference card — its single parameter, support, PMF and CDF, the mean and variance formulas, mode and median behavior, the defining memoryless property, the relationship to the negative binomial, and a canonical die-rolling example.
| Aspect |
Formula / statement |
Note / example |
| Parameter |
p ∈ (0, 1] — success probability per trial |
independent Bernoulli trials with constant p |
| Support |
k ∈ {1, 2, 3, ...} |
k is the trial on which the first success occurs |
| PMF |
P(X = k) = (1 − p)k − 1 · p |
(k − 1) failures, then a success — strictly decreasing in k |
| CDF |
F(k) = 1 − (1 − p)k |
complement of "all first k trials fail" |
| Expected value |
E[X] = 1 / p |
rolling for a 6: p = 1/6, so E[X] = 6 trials on average |
| Variance |
Var(X) = (1 − p) / p2; σ = √(1 − p) / p |
grows rapidly as p → 0 — rare successes are highly variable |
| Mode and median |
mode = 1 always; median = ⌈−ln 2 / ln(1 − p)⌉ |
PMF is strictly decreasing, so trial 1 is always most likely |
| Memoryless property |
P(X > m + n | X > m) = P(X > n) |
the only discrete distribution with this property |
| Relation |
Geom(p) = NegBin(1, p) |
geometric is the r = 1 special case of the negative binomial |
| Canonical example |
rolling a die until the first 6: p = 1/6 |
E[X] = 6, Var(X) = 30, σ ≈ 5.48 |