|
Size: 1223
Comment: Links
|
← Revision 8 as of 2026-07-21 01:16:30 ⇥
Size: 1241
Comment: Relink
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 25: | Line 25: |
| The [[Statistics/Moments|first moment]] is ''E[X] = p''. | The [[Analysis/ExpectedValue|expected value]] is given as ''E[X] = p''. |
| Line 27: | Line 27: |
| The [[Statistics/Variance|variance]] is ''Var[X] = p(1 - p) = pq''. | [[Analysis/Variance|Variance]] is given as ''Var[X] = p(1 - p) = pq''. |
Bernoulli Distribution
The Bernoulli distribution is a discrete probability density function, specifically giving outcomes 0 or 1.
Description
The distribution gives outcome 1 with probability p, and 0 with probability q = 1 - p. It is appropriate for modeling any binary event.
A variable distributed this way is notated like X ~ Bernoulli(p). (Sometimes shortened to 'Bern'.)
The sum of repeated and independent Bernoulli-distributed events are described by the binomial distribution.
Moments
The expected value is given as E[X] = p.
Variance is given as Var[X] = p(1 - p) = pq.
Usage
Sampling
If all frame listings have an equal probability of selection, sampling can be implemented like:
scalar p = .2 /* Probability of selection */ set seed 123456789 generate double r = runiform() generate sampled = (r < p)
The expected number of cases sampled is np; the sample size is described by the binomial distribution.
