Multinomial distribution

Revision as of 18:15, 11 April 2025 by 2a02:a420:260:5b8f:84bd:f22f:d43d:390d (talk) (Make more clear dice usually not fair)
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

In probability theory, the multinomial distribution is a generalization of the binomial distribution. For example, it models the probability of counts for each side of a k-sided die rolled n times. For n independent trials each of which leads to a success for exactly one of k categories, with each category having a given fixed success probability, the multinomial distribution gives the probability of any particular combination of numbers of successes for the various categories.

When k is 2 and n is 1, the multinomial distribution is the Bernoulli distribution. When k is 2 and n is bigger than 1, it is the binomial distribution. When k is bigger than 2 and n is 1, it is the categorical distribution. The term "multinoulli" is sometimes used for the categorical distribution to emphasize this four-way relationship (so n determines the suffix, and k the prefix).

The Bernoulli distribution models the outcome of a single Bernoulli trial. In other words, it models whether flipping a (possibly biased) coin one time will result in either a success (obtaining a head) or failure (obtaining a tail). The binomial distribution generalizes this to the number of heads from performing n independent flips (Bernoulli trials) of the same coin. The multinomial distribution models the outcome of n experiments, where the outcome of each trial has a categorical distribution, such as rolling a (possibly biased) k-sided die n times.

Let k be a fixed finite number. Mathematically, we have k possible mutually exclusive outcomes, with corresponding probabilities p1, ..., pk, and n independent trials. Since the k outcomes are mutually exclusive and one must occur we have pi ≥ 0 for i = 1, ..., k and <math>\sum_{i=1}^k p_i = 1</math>. Then if the random variables Xi indicate the number of times outcome number i is observed over the n trials, the vector X = (X1, ..., Xk) follows a multinomial distribution with parameters n and p, where p = (p1, ..., pk). While the trials are independent, their outcomes Xi are dependent because they must sum to n. Template:Short description Template:Probability distribution

DefinitionsEdit

Probability mass functionEdit

Suppose one does an experiment of extracting n balls of k different colors from a bag, replacing the extracted balls after each draw. Balls of the same color are equivalent. Denote the variable which is the number of extracted balls of color i (i = 1, ..., k) as Xi, and denote as pi the probability that a given extraction will be in color i. The probability mass function of this multinomial distribution is:

<math> \begin{align}

f(x_1,\ldots,x_k;n,p_1,\ldots,p_k) & {} = \Pr(X_1 = x_1 \text{ and } \dots \text{ and } X_k = x_k) \\ & {} = \begin{cases} { \displaystyle {n! \over x_1!\cdots x_k!}p_1^{x_1}\times\cdots\times p_k^{x_k}}, \quad & \text{when } \sum_{i=1}^k x_i=n \\ \\ 0 & \text{otherwise,} \end{cases} \end{align} </math>

for non-negative integers x1, ..., xk.

The probability mass function can be expressed using the gamma function as:

<math>f(x_1,\dots, x_{k}; p_1,\ldots, p_k) = \frac{\Gamma(\sum_i x_i + 1)}{\prod_i \Gamma(x_i+1)} \prod_{i=1}^k p_i^{x_i}.</math>

This form shows its resemblance to the Dirichlet distribution, which is its conjugate prior.

ExampleEdit

Suppose that in a three-way election for a large country, candidate A received 20% of the votes, candidate B received 30% of the votes, and candidate C received 50% of the votes. If six voters are selected randomly, what is the probability that there will be exactly one supporter for candidate A, two supporters for candidate B and three supporters for candidate C in the sample?

Note: Since we’re assuming that the voting population is large, it is reasonable and permissible to think of the probabilities as unchanging once a voter is selected for the sample. Technically speaking this is sampling without replacement, so the correct distribution is the multivariate hypergeometric distribution, but the distributions converge as the population grows large in comparison to a fixed sample size<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>.

<math> \Pr(A=1,B=2,C=3) = \frac{6!}{1! 2! 3!}(0.2^1) (0.3^2) (0.5^3) = 0.135 </math>

PropertiesEdit

NormalizationEdit

The multinomial distribution is normalized according to:

<math>\sum_{\sum_{j=1}^k x_j=n} f(x_1,...,x_k;n,p_1,...,p_k) = 1</math>

where the sum is over all permutations of <math>x_j</math>such that <math> \sum_{j=1}^k x_j=n </math>.

Expected value and varianceEdit

The expected number of times the outcome i was observed over n trials is

<math>\operatorname{E}(X_i) = n p_i.\,</math>

The covariance matrix is as follows. Each diagonal entry is the variance of a binomially distributed random variable, and is therefore

<math>\operatorname{Var}(X_i)=np_i(1-p_i).\,</math>

The off-diagonal entries are the covariances:

<math>\operatorname{Cov}(X_i,X_j)=-np_i p_j\,</math>

for i, j distinct.

All covariances are negative because for fixed n, an increase in one component of a multinomial vector requires a decrease in another component.

When these expressions are combined into a matrix with i, j element <math>\operatorname{cov} (X_i,X_j),</math> the result is a k × k positive-semidefinite covariance matrix of rank k − 1. In the special case where k = n and where the pi are all equal, the covariance matrix is the centering matrix.

The entries of the corresponding correlation matrix are

<math>\rho(X_i,X_i) = 1.</math>
<math>\rho(X_i,X_j) = \frac{\operatorname{Cov}(X_i,X_j)}{\sqrt{\operatorname{Var}(X_i)\operatorname{Var}(X_j)}} = \frac{-p_i p_j}{\sqrt{p_i(1-p_i) p_j(1-p_j)}} = -\sqrt{\frac{p_i p_j}{(1-p_i)(1-p_j)}}.</math>

Note that the number of trials n drops out of this expression.

Each of the k components separately has a binomial distribution with parameters n and pi, for the appropriate value of the subscript i.

The support of the multinomial distribution is the set

<math>\{(n_1,\dots,n_k)\in \mathbb{N}^k \mid n_1+\cdots+n_k=n\}.\,</math>

Its number of elements is

<math>{n+k-1 \choose k-1}.</math>

Matrix notationEdit

In matrix notation,

<math>\operatorname{E}(\mathbf{X}) = n \mathbf{p},\,</math>

and

<math>\operatorname{Var}(\mathbf{X}) = n \lbrace \operatorname{diag}(\mathbf{p}) - \mathbf{p} \mathbf{p}^{\rm T} \rbrace ,\,</math>

with Template:Math = the row vector transpose of the column vector Template:Math.

VisualizationEdit

As slices of generalized Pascal's triangleEdit

Just like one can interpret the binomial distribution as (normalized) one-dimensional (1D) slices of Pascal's triangle, so too can one interpret the multinomial distribution as 2D (triangular) slices of Pascal's pyramid, or 3D/4D/+ (pyramid-shaped) slices of higher-dimensional analogs of Pascal's triangle. This reveals an interpretation of the range of the distribution: discretized equilateral "pyramids" in arbitrary dimension—i.e. a simplex with a grid.Template:Citation needed

As polynomial coefficientsEdit

Similarly, just like one can interpret the binomial distribution as the polynomial coefficients of <math>(p + q)^n</math> when expanded, one can interpret the multinomial distribution as the coefficients of <math>(p_1 + p_2 + p_3 + \cdots + p_k)^n</math> when expanded, noting that just the coefficients must sum up to 1.

Large deviation theoryEdit

Template:See also

AsymptoticsEdit

By Stirling's formula, at the limit of <math>n, x_1, ..., x_k \to \infty</math>, we have<math display="block">\ln \binom{n}{x_1, \cdots, x_k} + \sum_{i=1}^k x_i\ln p_i = -n D_{KL}(\hat p \| p) - \frac{k-1}{2} \ln(2\pi n) - \frac 12 \sum_{i=1}^k \ln(\hat p_i) + o(1)</math>where relative frequencies <math>\hat p_i = x_i/n</math> in the data can be interpreted as probabilities from the empirical distribution <math>\hat p</math>, and <math>D_{KL}</math> is the Kullback–Leibler divergence.

This formula can be interpreted as follows.

Consider <math>\Delta_k</math>, the space of all possible distributions over the categories <math>\{1, 2, ..., k\}</math>. It is a simplex. After <math>n</math> independent samples from the categorical distribution <math>p</math> (which is how we construct the multinomial distribution), we obtain an empirical distribution <math>\hat p</math>.

By the asymptotic formula, the probability that empirical distribution <math>\hat p</math> deviates from the actual distribution <math>p</math> decays exponentially, at a rate <math> n D_{KL}(\hat p \| p)</math>. The more experiments and the more different <math>\hat p</math> is from <math>p</math>, the less likely it is to see such an empirical distribution.

If <math>A</math> is a closed subset of <math>\Delta_k</math>, then by dividing up <math>A</math> into pieces, and reasoning about the growth rate of <math>Pr(\hat p \in A_\epsilon)</math> on each piece <math>A_\epsilon</math>, we obtain Sanov's theorem, which states that<math display="block">\lim_{n \to \infty} \frac 1n \ln Pr(\hat p \in A) = - \inf_{\hat p \in A} D_{KL}(\hat p \| p)</math>

Concentration at large nEdit

Due to the exponential decay, at large <math>n</math>, almost all the probability mass is concentrated in a small neighborhood of <math>p</math>. In this small neighborhood, we can take the first nonzero term in the Taylor expansion of <math>D_{KL}</math>, to obtain<math display="block">\ln \binom{n}{x_1, \cdots, x_k} p_1^{x_1} \cdots p_k^{x_k} \approx -\frac n2 \sum_{i=1}^k \frac{(\hat p_i - p_i)^2}{p_i} = -\frac 12 \sum_{i=1}^k \frac{(x_i - n p_i)^2}{n p_i}</math>This resembles the gaussian distribution, which suggests the following theorem:

Theorem. At the <math>n \to \infty</math> limit, <math>n \sum_{i=1}^k \frac{(\hat p_i - p_i)^2}{p_i} = \sum_{i=1}^k \frac{(x_i - n p_i)^2}{n p_i}</math> converges in distribution to the chi-squared distribution <math>\chi^2(k-1)</math>.

File:Convergence of multinomial distribution to the gaussian distribution.webm
If we sample from the multinomial distribution <math>\mathrm{Multinomial}(n; 0.2, 0.3, 0.5)</math>, and plot the heatmap of the samples within the 2-dimensional simplex (here shown as a black triangle), we notice that as <math>n \to \infty</math>, the distribution converges to a gaussian around the point <math>(0.2, 0.3, 0.5)</math>, with the contours converging in shape to ellipses, with radii converging as <math>1/\sqrt n</math>. Meanwhile, the separation between the discrete points converge as <math>1/n</math>, and so the discrete multinomial distribution converges to a continuous gaussian distribution.

Template:Hidden begin

The space of all distributions over categories <math>\{1, 2, \ldots, k\}</math> is a simplex: <math>\Delta_{k} = \left\{(y_1, \ldots, y_k)\colon y_1, \ldots, y_k \geq 0, \sum_i y_i = 1\right\}</math>, and the set of all possible empirical distributions after <math>n</math> experiments is a subset of the simplex: <math>\Delta_{k, n} = \left\{(x_1/n, \ldots, x_k/n)\colon x_1, \ldots, x_k \in \N, \sum_i x_i = n\right\}</math>. That is, it is the intersection between <math>\Delta_k</math> and the lattice <math>(\Z^k)/n</math>.

As <math>n</math> increases, most of the probability mass is concentrated in a subset of <math>\Delta_{k, n}</math> near <math>p</math>, and the probability distribution near <math>p</math> becomes well-approximated by <math display="block">\binom{n}{x_1, \cdots, x_k} p_1^{x_1} \cdots p_k^{x_k} \approx e^{-\frac n2 \sum_i \frac{(\hat p_i - p_i)^2}{p_i}}</math>From this, we see that the subset upon which the mass is concentrated has radius on the order of <math>1/\sqrt n</math>, but the points in the subset are separated by distance on the order of <math>1/n</math>, so at large <math>n</math>, the points merge into a continuum. To convert this from a discrete probability distribution to a continuous probability density, we need to multiply by the volume occupied by each point of <math>\Delta_{k, n}</math> in <math>\Delta_k</math>. However, by symmetry, every point occupies exactly the same volume (except a negligible set on the boundary), so we obtain a probability density <math>\rho(\hat p) = C e^{-\frac n2 \sum_i \frac{(\hat p_i - p_i)^2}{p_i}}</math>, where <math>C</math> is a constant.

Finally, since the simplex <math>\Delta_k</math> is not all of <math>\R^k</math>, but only within a <math>(k-1)</math>-dimensional plane, we obtain the desired result.

Template:Hidden end

Conditional concentration at large nEdit

The above concentration phenomenon can be easily generalized to the case where we condition upon linear constraints. This is the theoretical justification for Pearson's chi-squared test.

Theorem. Given frequencies <math>x_i\in\mathbb N</math> observed in a dataset with <math>n</math> points, we impose <math>\ell + 1</math> independent linear constraints <math display="block">\begin{cases} \sum_i \hat p_i = 1, \\ \sum_i a_{1i} \hat p_i = b_1, \\ \sum_i a_{2i} \hat p_i = b_2, \\ \cdots, \\ \sum_i a_{\ell i} \hat p_i = b_{\ell} \end{cases} </math>(notice that the first constraint is simply the requirement that the empirical distributions sum to one), such that empirical <math>\hat p_i=x_i/n</math> satisfy all these constraints simultaneously. Let <math>q</math> denote the <math>I</math>-projection of prior distribution <math>p</math> on the sub-region of the simplex allowed by the linear constraints. At the <math>n \to \infty</math> limit, sampled counts <math>n \hat p_i</math> from the multinomial distribution conditional on the linear constraints are governed by <math>2n D_{KL}(\hat p \vert\vert q) \approx n \sum_i \frac{(\hat p_i - q_i)^2}{q_i}</math> which converges in distribution to the chi-squared distribution <math>\chi^2(k-1-\ell)</math>.

Template:Hidden begin

An analogous proof applies in this Diophantine problem of coupled linear equations in count variables <math>n \hat p_i</math>,<ref>Template:Cite arXiv</ref> but this time <math>\Delta_{k, n}</math> is the intersection of <math>(\Z^k)/n</math> with <math>\Delta_k </math> and <math>\ell </math> hyperplanes, all linearly independent, so the probability density <math>\rho(\hat p)</math> is restricted to a <math>(k-\ell-1)</math>-dimensional plane. In particular, expanding the KL divergence <math>D_{KL}(\hat p\vert\vert p)</math> around its minimum <math>q</math> (the <math>I</math>-projection of <math>p</math> on <math>\Delta_{k, n}</math>) in the constrained problem ensures by the Pythagorean theorem for <math>I</math>-divergence that any constant and linear term in the counts <math>n \hat p_i</math> vanishes from the conditional probability to multinationally sample those counts.

Notice that by definition, every one of <math>\hat p_1, \hat p_2, ..., \hat p_k</math> must be a rational number, whereas <math>p_1, p_2, ..., p_k</math> may be chosen from any real number in <math>[0, 1]</math> and need not satisfy the Diophantine system of equations. Only asymptotically as <math>n\rightarrow\infty</math>, the <math>\hat p_i</math>'s can be regarded as probabilities over <math>[0, 1]</math>.

Template:Hidden end

Away from empirically observed constraints <math>b_1,\ldots,b_\ell</math> (such as moments or prevalences) the theorem can be generalized:

Theorem.

  • Given functions <math>f_1, ..., f_\ell</math>, such that they are continuously differentiable in a neighborhood of <math>p</math>, and the vectors <math>(1, 1, ..., 1), \nabla f_1(p), ..., \nabla f_\ell(p)</math> are linearly independent;
  • given sequences <math>\epsilon_1(n), ..., \epsilon_\ell(n)</math>, such that asymptotically <math>\frac 1n \ll \epsilon_i(n) \ll \frac{1}{\sqrt n}</math> for each <math>i \in \{1, ..., \ell\}</math>;
  • then for the multinomial distribution conditional on constraints <math>f_1(\hat p) \in [f_1(p)- \epsilon_1(n), f_1(p) + \epsilon_1(n)], ..., f_\ell(\hat p) \in [f_\ell(p)- \epsilon_\ell(n), f_\ell(p) + \epsilon_\ell(n)]</math>, we have the quantity <math>n \sum_i \frac{(\hat p_i - p_i)^2}{p_i} = \sum_i \frac{(x_i - n p_i)^2}{n p_i}</math> converging in distribution to <math>\chi^2(k-1-\ell)</math> at the <math>n \to \infty</math> limit.

In the case that all <math>\hat p_i</math> are equal, the Theorem reduces to the concentration of entropies around the Maximum Entropy.<ref>Template:Cite arXiv</ref><ref>Template:Cite arXiv</ref>

Related distributionsEdit

In some fields such as natural language processing, categorical and multinomial distributions are synonymous and it is common to speak of a multinomial distribution when a categorical distribution is actually meant. This stems from the fact that it is sometimes convenient to express the outcome of a categorical distribution as a "1-of-k" vector (a vector with one element containing a 1 and all other elements containing a 0) rather than as an integer in the range <math>1 \dots k</math>; in this form, a categorical distribution is equivalent to a multinomial distribution over a single trial.

Statistical inferenceEdit

Template:Expand section

Equivalence tests for multinomial distributionsEdit

The goal of equivalence testing is to establish the agreement between a theoretical multinomial distribution and observed counting frequencies. The theoretical distribution may be a fully specified multinomial distribution or a parametric family of multinomial distributions.

Let <math>q</math> denote a theoretical multinomial distribution and let <math>p</math> be a true underlying distribution. The distributions <math>p</math> and <math>q</math> are considered equivalent if <math>d(p,q)<\varepsilon</math> for a distance <math>d</math> and a tolerance parameter <math>\varepsilon>0</math>. The equivalence test problem is <math>H_0=\{d(p,q)\geq\varepsilon\}</math> versus <math>H_1=\{d(p,q)<\varepsilon\}</math>. The true underlying distribution <math>p</math> is unknown. Instead, the counting frequencies <math>p_n</math> are observed, where <math>n</math> is a sample size. An equivalence test uses <math>p_n</math> to reject <math>H_0</math>. If <math>H_0</math> can be rejected then the equivalence between <math>p</math> and <math>q</math> is shown at a given significance level. The equivalence test for Euclidean distance can be found in text book of Wellek (2010).<ref>Template:Cite book</ref> The equivalence test for the total variation distance is developed in Ostrovski (2017).<ref>Template:Cite journalOfficial web link (subscription required). Alternate, free web link.</ref> The exact equivalence test for the specific cumulative distance is proposed in Frey (2009).<ref>Template:Cite journalOfficial web link (subscription required).</ref>

The distance between the true underlying distribution <math>p</math> and a family of the multinomial distributions <math>\mathcal{M}</math> is defined by <math>d(p, \mathcal{M})=\min_{h\in\mathcal{M}}d(p,h) </math>. Then the equivalence test problem is given by <math>H_0=\{d(p,\mathcal{M})\geq \varepsilon\}</math> and <math>H_1=\{d(p,\mathcal{M})< \varepsilon\}</math>. The distance <math>d(p,\mathcal{M})</math> is usually computed using numerical optimization. The tests for this case are developed recently in Ostrovski (2018).<ref>Template:Cite journalOfficial web link (subscription required). Alternate, free web link.</ref>

Confidence intervals for the difference of two proportionsEdit

In the setting of a multinomial distribution, constructing confidence intervals for the difference between the proportions of observations from two events, <math>p_i-p_j</math>, requires the incorporation of the negative covariance between the sample estimators <math>\hat{p}_i = \frac{X_i}{n} </math> and <math>\hat{p}_j = \frac{X_j}{n}</math>.

Some of the literature on the subject focused on the use-case of matched-pairs binary data, which requires careful attention when translating the formulas to the general case of <math>p_i-p_j</math> for any multinomial distribution. Formulas in the current section will be generalized, while formulas in the next section will focus on the matched-pairs binary data use-case.

Wald's standard error (SE) of the difference of proportion can be estimated using:<ref>Template:Cite book</ref>Template:Rp<ref>Template:Cite journal</ref>

<math> \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)} = \sqrt{\frac{(\hat{p}_i + \hat{p}_j) - (\hat{p}_i - \hat{p}_j)^2}{n}} </math>

For a <math>100(1 - \alpha)\%</math> approximate confidence interval, the margin of error may incorporate the appropriate quantile from the standard normal distribution, as follows:

<math>(\hat{p}_i - \hat{p}_j) \pm z_{\alpha/2} \cdot \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)}</math>

Template:Hidden begin As the sample size (<math>n</math>) increases, the sample proportions will approximately follow a multivariate normal distribution, thanks to the multidimensional central limit theorem (and it could also be shown using the Cramér–Wold theorem). Therefore, their difference will also be approximately normal. Also, these estimators are weakly consistent and plugging them into the SE estimator makes it also weakly consistent. Hence, thanks to Slutsky's theorem, the pivotal quantity <math>\frac{(\hat{p}_i - \hat{p}_j) - (p_i - p_j)}{\widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)}}</math> approximately follows the standard normal distribution. And from that, the above approximate confidence interval is directly derived.

The SE can be constructed using the calculus of the variance of the difference of two random variables: <math> \begin{align} \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)} & = \sqrt{\frac{\hat{p}_i (1 - \hat{p}_i)}{n} + \frac{\hat{p}_j (1 - \hat{p}_j)}{n} - 2\left(-\frac{\hat{p}_i \hat{p}_j}{n}\right)} \\ & = \sqrt{\frac{1}{n} \left(\hat{p}_i + \hat{p}_j - \hat{p}_i^2 - \hat{p}_j^2 + 2\hat{p}_i \hat{p}_j\right)} \\ & = \sqrt{\frac{(\hat{p}_i + \hat{p}_j) - (\hat{p}_i - \hat{p}_j)^2}{n}} \end{align} </math>

Template:Hidden end

A modification which includes a continuity correction adds <math>\frac{1}{n}</math> to the margin of error as follows:<ref name=pass_sample_size_software>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>Template:Rp

<math>(\hat{p}_i - \hat{p}_j) \pm \left(z_{\alpha/2} \cdot \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)} + \frac{1}{n}\right)</math>

Another alternative is to rely on a Bayesian estimator using Jeffreys prior which leads to using a dirichlet distribution, with all parameters being equal to 0.5, as a prior. The posterior will be the calculations from above, but after adding 1/2 to each of the k elements, leading to an overall increase of the sample size by <math>\frac{k}{2}</math>. This was originally developed for a multinomial distribution with four events, and is known as wald+2, for analyzing matched pairs data (see the next section for more details).<ref name=Agresti2005>Template:Cite journal</ref>

This leads to the following SE:

<math> \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)}_{wald+\frac{k}{2}} = \sqrt{\frac{\left(\hat{p}_i + \hat{p}_j + \frac{1}{n}\right)\frac{n}{n+\frac{k}{2}} - \left(\hat{p}_i - \hat{p}_j\right)^2 \left(\frac{n}{n+\frac{k}{2}}\right)^2 }{n+\frac{k}{2}}}

</math>

Template:Hidden begin <math> \begin{align} \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)}_{wald+\frac{k}{2}} & = \sqrt{\frac{\left(\frac{x_i+1/2}{n+\frac{k}{2}} + \frac{x_j+1/2}{n+\frac{k}{2}}\right) - \left(\frac{x_i+1/2}{n+\frac{k}{2}} - \frac{x_j+1/2}{n+\frac{k}{2}}\right)^2}{n+\frac{k}{2}}} \\

& = 

\sqrt{\frac{\left(\frac{x_i}{n} + \frac{x_j}{n} + \frac{1}{n}\right)\frac{n}{n+\frac{k}{2}} - \left(\frac{x_i}{n} - \frac{x_j}{n}\right)^2 \left(\frac{n}{n+\frac{k}{2}}\right)^2 }{n+\frac{k}{2}}} \\ & = \sqrt{\frac{\left(\hat{p}_i + \hat{p}_j + \frac{1}{n}\right)\frac{n}{n+\frac{k}{2}} - \left(\hat{p}_i - \hat{p}_j\right)^2 \left(\frac{n}{n+\frac{k}{2}}\right)^2 }{n+\frac{k}{2}}} \end{align} </math> Template:Hidden end

Which can just be plugged into the original Wald formula as follows:

<math>(p_i - p_j)\frac{n}{n+\frac{k}{2}} \pm z_{\alpha/2} \cdot \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)}_{wald+\frac{k}{2}}</math>

Occurrence and applicationsEdit

Confidence intervals for the difference in matched-pairs binary data (using multinomial with k=4)Edit

For the case of matched-pairs binary data, a common task is to build the confidence interval of the difference of the proportion of the matched events. For example, we might have a test for some disease, and we may want to check the results of it for some population at two points in time (1 and 2), to check if there was a change in the proportion of the positives for the disease during that time.

Such scenarios can be represented using a two-by-two contingency table with the number of elements that had each of the combination of events. We can use small f for sampling frequencies: <math>f_{11}, f_{10}, f_{01}, f_{00}</math>, and capital F for population frequencies: <math>F_{11}, F_{10}, F_{01}, F_{00}</math>. These four combinations could be modeled as coming from a multinomial distribution (with four potential outcomes). The sizes of the sample and population can be n and N respectively. And in such a case, there is an interest in building a confidence interval for the difference of proportions from the marginals of the following (sampled) contingency table:

Test 2 positive Test 2 negative Row total
Test 1 positive <math>f_{11}</math> <math>f_{10}</math> <math>f_{1*} = f_{11} + f_{10}</math>
Test 1 negative <math>f_{01}</math> <math>f_{00}</math> <math>f_{0*} = f_{01} + f_{00}</math>
Column total <math>f_{*1} = f_{11} + f_{01}</math> <math>f_{*0} = f_{10} + f_{00}</math> <math>n</math>

In this case, checking the difference in marginal proportions means we are interested in using the following definitions: <math>p_{1*} = \frac{F_{1*}}{N} = \frac{F_{11} + F_{10}}{N}</math>, <math>p_{*1} = \frac{F_{*1}}{N} = \frac{F_{11} + F_{01}}{N}</math>. And the difference we want to build confidence intervals for is:

<math>p_{*1} - p_{1*} = \frac{F_{11} + F_{01}}{N} - \frac{F_{11} + F_{10}}{N} = \frac{F_{01}}{N} - \frac{F_{10}}{N} = p_{01} - p_{10}</math>

Hence, a confidence intervals for the marginal positive proportions (<math>p_{*1} - p_{1*}</math>) is the same as building a confidence interval for the difference of the proportions from the secondary diagonal of the two-by-two contingency table (<math>p_{01} - p_{10}</math>).

Calculating a p-value for such a difference is known as McNemar's test. Building confidence interval around it can be constructed using methods described above for Confidence intervals for the difference of two proportions.

The Wald confidence intervals from the previous section can be applied to this setting, and appears in the literature using alternative notations. Specifically, the SE often presented is based on the contingency table frequencies instead of the sample proportions. For example, the Wald confidence intervals, provided above, can be written as:<ref name=pass_sample_size_software />Template:Rp

<math> \widehat{\operatorname{SE}(p_{*1} - p_{1*})} = \widehat{\operatorname{SE}(p_{01} - p_{10})} = \frac{\sqrt{n(f_{10} + f_{01}) - (f_{10} - f_{01})^2}}{n\sqrt{n}} </math>

Further research in the literature has identified several shortcomings in both the Wald and the Wald with continuity correction methods, and other methods have been proposed for practical application.<ref name=pass_sample_size_software />

One such modification includes Agresti and Min’s Wald+2 (similar to some of their other works<ref>Template:Cite journal</ref>) in which each cell frequency had an extra <math>\frac{1}{2}</math> added to it.<ref name=Agresti2005/> This leads to the Wald+2 confidence intervals. In a Bayesian interpretation, this is like building the estimators taking as prior a dirichlet distribution with all parameters being equal to 0.5 (which is, in fact, the Jeffreys prior). The +2 in the name wald+2 can now be taken to mean that in the context of a two-by-two contingency table, which is a multinomial distribution with four possible events, then since we add 1/2 an observation to each of them, then this translates to an overall addition of 2 observations (due to the prior).

This leads to the following modified SE for the case of matched pairs data:

<math> \widehat{\operatorname{SE}(p_{*1} - p_{1*})} = \frac{\sqrt{(n+2)(f_{10} + f_{01} + 1) - (f_{10} - f_{01})^2}}{(n+2)\sqrt{(n+2)}} </math>

Which can just be plugged into the original Wald formula as follows:

<math>(p_{*1} - p_{1*})\frac{n}{n+2} \pm z_{\alpha/2} \cdot \widehat{\operatorname{SE}(\hat{p}_i - \hat{p}_j)}_{wald+2}</math>

Other modifications include Bonett and Price’s Adjusted Wald, and Newcombe’s Score.

Computational methodsEdit

Random variate generationEdit

Template:Further

First, reorder the parameters <math>p_1, \ldots, p_k</math> such that they are sorted in descending order (this is only to speed up computation and not strictly necessary). Now, for each trial, draw an auxiliary variable X from a uniform (0, 1) distribution. The resulting outcome is the component

<math>j = \min \left\{ j' \in \{1,\dots,k\}\colon \left(\sum_{i=1}^{j'} p_i\right) - X \geq 0 \right\}.</math>

{Xj = 1, Xk = 0 for k ≠ j } is one observation from the multinomial distribution with <math>p_1, \ldots, p_k</math> and n = 1. A sum of independent repetitions of this experiment is an observation from a multinomial distribution with n equal to the number of such repetitions.

Sampling using repeated conditional binomial samplesEdit

Given the parameters <math>p_1, p_2, \ldots, p_k</math> and a total for the sample <math>n</math> such that <math>\sum_{i=1}^k X_i = n </math>, it is possible to sample sequentially for the number in an arbitrary state <math>X_i </math>, by partitioning the state space into <math>i </math> and not-<math>i </math>, conditioned on any prior samples already taken, repeatedly.

Algorithm: Sequential conditional binomial samplingEdit

<syntaxhighlight lang="bash"> S = n rho = 1 for i in [1,k-1]:

   if rho != 0:
       X[i] ~ Binom(S,p[i]/rho)
   else 
       X[i] = 0
   S = S - X[i]
   rho = rho - p[i]

X[k] = S </syntaxhighlight>Heuristically, each application of the binomial sample reduces the available number to sample from and the conditional probabilities are likewise updated to ensure logical consistency.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Software implementationsEdit

  • The MultinomialCI R package allows the computation of simultaneous confidence intervals for the probabilities of a multinomial distribution given a set of observations.<ref>{{#invoke:citation/CS1|citation

|CitationClass=web }}</ref>

See alsoEdit

ReferencesEdit

Template:Reflist

Further readingEdit

Template:Refbegin

|CitationClass=web }} Template:Refend

Template:ProbDistributions Template:Authority control