| Download a pdf copy of this help file here |
See also: Stochastic processes introduction, The Poisson process, The hypergeometric process, Binomial distribution
Definition
A binomial process is a random counting system where there are n independent identical trials, each one of which has the same probability of success p, which produces s successes from those n trials (where 0 ≤ s ≤ n and n > 0 obviously). There are thus three parameters {n, p, s} that between them completely describe a binomial process. Associated with each of these three parameters are three distributions that describe the uncertainty about or variability of these parameters. The three distributions require that one has knowledge of two parameters in order to use these distributions to estimate the third.
Simple example
The simplest example of a binomial process is the toss of a coin. If we define 'heads' as a success, each toss has the same probability of success p (0.5 for a fair coin). Then, for a given number of trials n (tosses of a coin), the number of successes will be s (the number of 'heads'. Each trial can be thought of as a random variable that returns either a 1 with probability p or a 0 with probability (1-p). Such a trial is often known as a Bernoulli trial, and the probability (1-p) is often given the label q.
The distributions
As explained above, there are essentially three distributions that describe the uncertainty or randomness of the three components of the binomial process, s, n and p. These three distributions are described in the following sections. The relationship between these distributions is also shown graphically in the section Introduction to stochastic processes. Finally, whereas the second section describes the randomness of the number of trials n to achieve s successes, the fourth section describes a distribution of the uncertainty (not randomness !) of n, after observing s successes. The answers can be different!
Distribution of the number of successes s in n trials, each with probability p
Distribution of the number of trials n needed to obtain s successes, each with probability p
Estimation of the probability p after having observed s successes in n trials
Estimation of the number of trials n made after having observed s successes with probability p
Summary of results for the binomial process
Quantity |
Formula |
Notes |
Number of successes |
s = VoseBinomial(n,p) |
|
Probability of success |
p = VoseBeta(s+1,n-s+1) p = VoseBeta(a+s, b+n-s) |
assuming Uniform prior assuming Beta(a,b) prior |
Number of trials |
n = s + VoseNegBin(s,p) n = s + VoseNegBin(s+1,p) |
when last trial is a success when last trial not known to be a success |
Read on: The Poisson process