Skip to content

Geometric Distribution

The geometric distribution counts how many tries it takes to get the first success, when each try has the same chance: attempts before a call connects, inspections before the first defect.

Write Geometric(p), where p is the success probability:

Geometric(0.3)

At 30 percent per try it averages a few attempts, occasionally many. Use it for the number of repeats before something first succeeds.