X ~ Geo(p)
p: probability of success
The Geometric distribution is a discrete distribution used to
calculate the probability that the first successful outcome occurs on a specific trial (x).
Example
Geo(0.4): The probability of a successful outcome is 0.4
Conditions
- The trials are independent of each other
- There are two possible outcomes; success or failure
- The probability of success is constant
Formulae
x: the trial for which the first successful outcome occurs.
|
P(X = x) = p(1 - p)x-1
P(X > x) = (1 - p)x
P(X ≤ x) = 1 - (1 - p)x
|
|
|