AP Statistics Curriculum 2007 Distrib Dists

From SOCR
Jump to: navigation, search

General Advance-Placement (AP) Statistics Curriculum - Geometric, HyperGeometric, Negative Binomial Random Variables and Experiments

Geometric

  • Definition: The Geometric Distribution is the probability distribution of the number X of Bernoulli trials needed to get one success, supported on the set {1, 2, 3, ...}. The name geometric is a direct derivative from the mathematical notion of geometric series.
  • Mass Function: If the probability of successes on each trial is P(success)=p, then the probability that x trials are needed to get one success is \(P(X = x) = (1 - p)^{x-1} \times p\), for x = 1, 2, 3, 4,....

\[\sum_{k=0}^{n} p(1-p)^k = p(1-p)^0+p(1-p)^1+p(1-p)^2+p(1-p)^3+\cdots+p(1-p)^n.\]

Let r=(1-p), then p=(1-r) and \(\sum_{k=0}^{n} p(1-p)^k = \begin{align} (1-r) \sum_{k=0}^{n} r^k & = (1-r)(r^0 + r^1+r^2+r^3+\cdots+r^n) \\ & = r^0 + r^1+r^2+r^3+\cdots+r^n \\ & -( r^1+r^2+r^3+\cdots +r^n + r^{n+1}) \\ & = r^0 - r^{n+1} = 1 - r^{n+1}. \end{align}\)
Thus\[\sum_{k=0}^{n} p(1-p)^k = \frac{p - pr^{n+1}}{1-r} = 1-pr^{n+1},\] which converges to 1, as \(n\longrightarrow \infty,\), and hence the above geometric density is well defined.
Denote the geometric expectation by E = E(X) = \(\sum_{k=0}^{\infty} kpr^k\), where r=1-p. Then \(pE = E - (1-p)E = \sum_{k=0}^{\infty} kpr^k - (\sum_{k=0}^{\infty} kpr^{k+1})=\) \(\sum_{k=0}^{\infty} pr^k = 1\). Therefore, \(E = \frac{1}{p}\).
  • Variance: The Variance is \({1-p\over p^2}.\)
  • The Geometric distribution gets its name because its probability mass function is a geometric progression. It is the discrete analogue of the Exponential distribution and is also known as Furry distribution.

HyperGeometric

The hypergeometric distribution is a discrete probability distribution that describes the number of successes in a sequence of n draws from a finite population without replacement. An experimental design for using Hypergeometric distribution is illustrated in this table:

Type Drawn Not-Drawn Total
Defective k m-k m
Non-Defective n-k N+k-n-m N-m
Total n N-n N
  • Explanation: Suppose there is a shipment of N objects in which m are defective. The Hypergeometric Distribution describes the probability that in a sample of n distinctive objects drawn from the shipment exactly k objects are defective.
  • Mass function: The random variable X follows the Hypergeometric Distribution with parameters N, m and n, then the probability of getting exactly k successes is given by

\[ P(X=k) = {{{m \choose k} {{N-m} \choose {n-k}}}\over {N \choose n}}.\]

This formula for the Hypergeometric Mass Function may be interpreted as follows: There are \({{N}\choose{n}}\) possible samples (without replacement). There are \({{m}\choose{k}}\) ways to obtain k defective objects and there are \({{N-m}\choose{n-k}}\) ways to fill out the rest of the sample with non-defective objects.

The mean and variance of the hypergeometric distribution have the following closed forms:

Mean\[n \times m\over N\]
Variance\[{ {nm\over N} ( 1-{m\over N} ) (N-n)\over N-1}\]

Examples

  • SOCR Activity: The SOCR Ball and Urn Experiment provides a hands-on demonstration of the utilization of Hypergeometric distribution in practice. This activity consists of selecting n balls at random from an urn with N balls, R of which are red and the other N - R green. The number of red balls Y in the sample is recorded on each update. The distribution and moments of Y are shown in blue in the distribution graph and are recorded in the distribution table. On each update, the empirical density and moments of Y are shown in red in the distribution graph and are recorded in the distribution table. Either of two sampling models can be selected with the list box: with replacement and without replacement. The parameters N, R, and n can vary with scroll bars.
SOCR Activities BallAndUrnExperiment SubTopic Chui 050307 Fig2.JPG
  • A lake contains 1,000 fish; 100 are randomly caught and tagged. Suppose that later we catch 20 fish. Use SOCR Hypergeometric Distribution to:
    • Compute the probability mass function of the number of tagged fish in the sample of 20.
    • Compute the expected value and the variance of the number of tagged fish in this sample.
    • Compute the probability that this random sample contains more than 3 tagged fish.
SOCR EBook Dinov RV HyperGeom 013008 Fig9.jpg
  • Hypergeometric distribution may also be used to estimate the population size: Suppose we are interested in determining the population size. Let N = number of fish in a particular isolated region. Suppose we catch, tag and release back M=200 fish. Several days later, when the fish are randomly mixed with the untagged fish, we take a sample of n=100 and observe m=5 tagged fish. Suppose p=200/N is the population proportion of tagged fish. Notice that when sampling fish, we sample without replacement. Thus, hypergeometric is the exact model for this process. Assuming the sample-size (n) is < 5% of the population size(N), we can use binomial approximation to hypergeometric. Thus if the sample of n=100 fish had 5 tagged, the sample-proportion (estimate of the population proportion) will be \(\hat{p}={5\over 100}=0.05\). Thus, we can estimate that \(0.05=\hat{p}={200\over N}\), and \(N\approx 4,000\), as shown in the figure below.
SOCR EBook Dinov Prob HyperG 041108 Fig9a.jpg

Negative Binomial

The family of Negative Binomial Distributions is a two-parameter family; p and r with 0 < p < 1 and r > 0. There are two (identical) combinatorial interpretations of Negative Binomial processes (X or Y).

X=Trial index (n) of the rth success, or Total # of experiments (n) to get r successes

  • Probability Mass Function\[ P(X=n) = {n-1 \choose r-1}\cdot p^r \cdot (1-p)^{n-r} \!\], for n = r,r+1,r+2,.... (n=trial number of the rth success)
  • Mean\[E(X)= {r \over p}\]
  • Variance\[Var(X)= {r(1-p) \over p^2}\]

Y = Number of failures (k) to get r successes

  • Probability Mass Function\[ P(Y=k) = {k+r-1 \choose k}\cdot p^r \cdot (1-p)^k \!\], for k = 0,1,2,.... (k=number of failures before the rth successes)
  • \(Y \sim NegBin(r, p)\), the probability of k failures and r successes in n=k+r Bernoulli(p) trials with success on the last trial.
  • Mean\[E(Y)= {r(1-p) \over p}\].
  • Variance\[Var(Y)= {r(1-p) \over p^2}\].
  • Note that X = Y + r, and E(X) = E(Y) + r, whereas VAR(X)=VAR(Y).

SOCR Negative Binomial Experiment

Application

Suppose Jane is promoting and fund-raising for a presidential candidate. She wants to visit all 50 states and she's pledged to get all electoral votes of 6 states before she and the candidate she represents are satisfied. In every state, there is a 30% chance that Jane will be able to secure all electoral votes and a 70% chance that she'll fail.

  • What's the probability mass function of the number of failures (k=n-r) to get r=6 successes?
In other words, what's the probability mass function that the last 6th state she succeeds to secure all electoral votes happens to be at the nth state she campaigns in?

NegBin(r, p) distribution describes the probability of k failures and r successes in n=k+r Bernoulli(p) trials with success on the last trial. Looking to secure the electoral votes for 6 states means Jane needs to get 6 successes before she (and her candidate) is happy. The number of trials (i.e., states visited) needed is n=k+6. The random variable we are interested in is X={number of states visited to achieve 6 successes (secure all electoral votes within these states)}. So, n = k+6, and \(X\sim NegBin(r=6, p=0.3)\). Thus, for \(n \geq 6\), the mass function (giving the probabilities that Jane will visit n states before her ultimate success is:

\[ P(X=n) = {n-1 \choose r-1}\cdot p^r \cdot (1-p)^{n-r} = {n - 1 \choose r-1} \cdot 0.3^6 \cdot 0.7^{n-r} \]

  • What's the probability that Jane finishes her campaign in the 10th state?
Let \(X\sim NegBin(r=6, p=0.3)\), then \(P(X=10) = {10-1 \choose 6-1}\cdot 0.3^6 \cdot 0.7^{10-6} = 0.022054.\)
SOCR EBook Dinov RV NegBinomial 013008 Fig4.jpg
  • What's the probability that Jane finishes campaigning on or before reaching the 8th state?

\[ P(X\leq 8) = 0.011292\]

Error creating thumbnail: File missing
  • Suppose the success of getting all electoral votes within a state is reduced to only 10%, then X~NegBin(r=6, p=0.1). Notice that the shape and domain the Negative-Binomial distribution significantly chance now (see image below).
What's the probability that Jane covers all 50 states but fails to get all electoral votes in any 6 states (as she had hoped for)?

\[ P(X\geq 50) = 0.632391\]

SOCR EBook Dinov RV NegBinomial 013008 Fig6.jpg

Normal approximation to Negative Binomial distribution

The central limit theorem provides the foundation for approximation of negative binomial distribution by Normal distribution. Each negative binomial random variable, \(V_k \sim NB(k,p)\), may be expressed as a sum of k independent, identically distributed (geometric) random variables \(\{X_i\}\), i.e., \( V_k = \sum_{i=1}^k{X_i}\), where \( X_i \sim Geometric(p)\). In various scientific applications, given a large k, the distribution of \(V_k\) is approximately normal with mean and variance given by \(\mu=k\frac{1}{p}\) and \(\sigma^2=k\frac{1-p}{p^2}\), as \(k \longrightarrow \infty\). Depending on the parameter p, k may need to be rather large for the approximation to work well. Also, when using the normal approximation, we should remember to use the continuity correction, since the negative binomial and Normal distributions are discrete and continuous, respectively.

In the above example, \(P(X\le 8)\), \(V_k \sim NegBin(k=r=6, p=0.3)\), the normal distribution approximation, \(N(\mu=\frac{k}{p}=20, \sigma=\sqrt{k\frac{1-p}{p^2}}=6.83)\), is shown it the following image and table:

SOCR EBook Dinov RV NegBinomial 013008 Fig4a.png

The probabilities of the real Negative Binomial and approximate Normal distributions (on the range [2:4]) are not identical but are sufficiently close.

Summary \(NegativeBinomial(k=6,p=0.3)\) \(Normal(\mu=20, \sigma=6.83)\)
Mean 20.0 20.0
Median 19.0 20.0
Variance 46.666667 46.6489
Standard Deviation 6.831301 6.83
Max Density 0.062439 0.058410
Probability Areas
\(\le 8\) .011292 0.039433
>8 .988708 0.960537

Negative Multinomial Distribution (NMD)

The Negative Multinomial Distribution is a generalization of the two-parameter Negative Binomial distribution (NB(r,p)) to \(m\ge 1\) outcomes. Suppose we have an experiment that generates \(m\ge 1\) possible outcomes, \(\{X_0,\cdots,X_m\}\), each occurring with probability \(\{p_0,\cdots,p_m\}\), respectively, where with \(0<p_i<1\) and \(\sum_{i=0}^m{p_i}=1\). That is, \(p_0 = 1-\sum_{i=1}^m{p_i}\). If the experiment proceeds to generate independent outcomes until \(\{X_0, X_1, \cdots, X_m\}\) occur exactly \(\{k_0, k_1, \cdots, k_m\}\) times, then the distribution of the m-tuple \(\{X_1, \cdots, X_m\}\) is Negative Multinomial with parameter vector \((k_0,\{p_1,\cdots,p_m\})\). Notice that the degree-of-freedom here is actually m, not (m+1). That is why we only have a probability parameter vector of size m, not (m+1), as all probabilities add up to 1 (so this introduces one relation). Contrast this with the combinatorial interpretation of Negative Binomial (special case with m=1): \[X \sim NegativeBinomial(NumberOfSuccesses=r,ProbOfSuccess=p),\]

X=Total # of experiments (n) to get r successes (and therefore n-r failures);

\[X \sim Negative Multinomial(k_0,\{p_0,p_1\}),\]

X=Total # of experiments (n) to get \(k_0\) (default variable, \(X_o\)) and \(n-k_0\) outcomes of the other possible outcome (\(X_1\)).

Negative Multinomial Summary

  • Probability Mass Function\[ P(k_1, \cdots, k_m|k_0,\{p_1,\cdots,p_m\}) = \left (\sum_{i=0}^m{k_i}-1\right)!\frac{p_0^{k_0}}{(k_0-1)!} \prod_{i=1}^m{\frac{p_i^{k_i}}{k_i!}},\] or equivalently:

\[ P(k_1, \cdots, k_m|k_0,\{p_1,\cdots,p_m\}) = \Gamma\left(\sum_{i=1}^m{k_i}\right)\frac{p_0^{k_0}}{\Gamma(k_0)} \prod_{i=1}^m{\frac{p_i^{k_i}}{k_i!}},\] where \(\Gamma(x)\) is the Gamma function.

  • Mean (vector)\[\mu=E(X_1,\cdots,X_m)= (\mu_1=E(X_1), \cdots, \mu_m=E(X_m)) = \left ( \frac{k_0p_1}{p_0}, \cdots, \frac{k_0p_m}{p_0} \right).\]
  • Variance-Covariance (matrix)\[Cov(X_i,X_j)= \{cov[i,j]\},\] where

\[ cov[i,j] = \begin{cases} \frac{k_0 p_i p_j}{p_0^2},& i\not= j,\\ \frac{k_0 p_i (p_i + p_0)}{p_0^2},& i=j.\end{cases}.\]

Cancer Example

The Probability Theory Chapter of the EBook shows the following example using 400 Melanoma (skin cancer) Patients where the Type and Site of the cancer are recorded for each subject, as shown in the Table below.

Type Site Totals
Head and Neck Trunk Extremities
Hutchinson's melanomic freckle 22 2 10 34
Superficial 16 54 115 185
Nodular 19 33 73 125
Indeterminant 11 17 28 56
Column Totals 68 106 226 400

The sites (locations) of the cancer may be independent, but there may be positive dependencies of the type of cancer for a given location (site). For example, localized exposure to radiation implies that elevated level of one type of cancer (at a given location) may indicate higher level of another cancer type at the same location. We want to use the Negative Multinomial distribution to model the sites cancer rates and try to measure some of the cancer type dependencies within each location.

Let's denote by \(x_{i,j}\) the cancer rates for each site (\(0\leq i \leq 2\)) and each type of cancer (\(0\leq j \leq 3\)). For each (fixed) site (\(0\leq i \leq 2\)), the cancer rates are independent Negative Multinomial distributed random variables. That is, for each column index (site) the column-vector X has the following distribution: \[X=\{X_1, X_2, X_3\} \sim NMD(k_0,\{p_1,p_2,p_3\})\].

Different columns (sites) are considered to be different instances of the random negative-multinomially distributed vector, X. Then we have the following estimates:

\[\hat{\mu}_{i,j} = \frac{x_{i,.}\times x_{.,j}}{x_{.,.}}\]

\[x_{i,.} = \sum_{j=0}^{3}{x_{i,j}}\]
\[x_{.,j} = \sum_{i=0}^{2}{x_{i,j}}\]
\[x_{.,.} = \sum_{i=0}^{2}\sum_{j=0}^{3}{{x_{i,j}}}\]
Example\[\hat{\mu}_{1,1} = \frac{x_{1,.}\times x_{.,1}}{x_{.,.}}=\frac{34\times 68}{400}=5.78\]
  • Variance-Covariance: For a single column vector, \(X=\{X_1, X_2, X_3\} \sim NMD(k_0,\{p_1,p_2,p_3\})\), covariance between any pair of Negative Multinomial counts (\(X_i\) and \(X_j\)) is:

\[ cov[X_i,X_j] = \begin{cases} \frac{k_0 p_i p_j}{p_0^2},& i\not= j,\\ \frac{k_0 p_i (p_i + p_0)}{p_0^2},& i=j.\end{cases}\].

Example: For the first site (Head and Neck, j=0), suppose that \(X=\left \{X_1=5, X_2=1, X_3=5\right \}\) and \(X \sim NMD(k_0=10, \{p_1=0.2, p_2=0.1, p_3=0.2 \})\). Then:
\[p_0 = 1 - \sum_{i=1}^3{p_i}=0.5\]
\[NMD(X|k_0,\{p_1, p_2, p_3\})= 0.00465585119998784 \]
\[cov[X_1,X_3] = \frac{10 \times 0.2 \times 0.2}{0.5^2}=1.6\]
\[\mu_2=\frac{k_0 p_2}{p_0} = \frac{10\times 0.1}{0.5}=2.0\]
\[\mu_3=\frac{k_0 p_3}{p_0} = \frac{10\times 0.2}{0.5}=4.0\]
\[corr[X_2,X_3] = \left (\frac{\mu_2 \times \mu_3}{(k_0+\mu_2)(k_0+\mu_3)} \right )^{\frac{1}{2}}\] and therefore, \(corr[X_2,X_3] = \left (\frac{2 \times 4}{(10+2)(10+4)} \right )^{\frac{1}{2}} = 0.21821789023599242. \)
You can also use the interactive SOCR negative multinomial distribution calculator to compute these quantities, as shown on the figure below.
Error creating thumbnail: File missing
  • There is no MLE estimate for the NMD \(k_0\) parameter (see this reference). However, there are approximate protocols for estimating the \(k_0\) parameter, see the example below.
  • Correlation: correlation between any pair of Negative Multinomial counts (\(X_i\) and \(X_j\)) is:

\[ Corr[X_i,X_j] = \begin{cases} \left (\frac{\mu_i \times \mu_j}{(k_0+\mu_i)(k_0+\mu_j)} \right )^{\frac{1}{2}} = \left (\frac{p_i p_j}{(p_0+p_i)(p_0+p_j)} \right )^{\frac{1}{2}}, & i\not= j, \\ 1, & i=j.\end{cases}\].

  • The marginal distribution of each of the \(X_i\) variables is negative binomial, as the \(X_i\) count (considered as success) is measured against all the other outcomes (failure). But jointly, the distribution of \(X=\{X_1,\cdots,X_m\}\) is negative multinomial, i.e., \(X \sim NMD(k_0,\{p_1,\cdots,p_m\})\) .

Notice that the pair-wise NMD correlations are always positive, where as the correlations between multinomail counts are always negative. Also note that as the parameter \(k_0\) increases, the paired correlations go to zero! Thus, for large \(k_0\), the Negative Multinomial counts \(X_i\) behave as independent Poisson random variables with respect to their means \(\left ( \mu_i= k_0\frac{p_i}{p_0}\right )\).

Parameter estimation

  • Estimation of the mean (expected) frequency counts (\(\mu_j\)) of each outcome (\(X_j\)):
The MLE estimates of the NMD mean parameters \(\mu_j\) are easy to compute.
If we have a single observation vector \(\{x_1, \cdots,x_m\}\), then \(\hat{\mu}_i=x_i.\)
If we have several observation vectors, like in this case we have the cancer type frequencies for 3 different sites, then the MLE estimates of the mean counts are \(\hat{\mu}_j=\frac{x_{j,.}}{I}\), where \(0\leq j \leq J\) is the cancer-type index and the summation is over the number of observed (sampled) vectors (I).
For the cancer data above, we have the following MLE estimates for the expectations for the frequency counts:
Hutchinson's melanomic freckle type of cancer (\(X_0\)) is \(\hat{\mu}_0 = 34/3=11.33\).
Superficial type of cancer (\(X_1\)) is \(\hat{\mu}_1 = 185/3=61.67\).
Nodular type of cancer (\(X_2\)) is \(\hat{\mu}_2 = 125/3=41.67\).
Indeterminant type of cancer (\(X_3\)) is \(\hat{\mu}_3 = 56/3=18.67\).
  • Estimation of the \(k_0\) (gamma) parameter:
There is no MLE for the \(k_0\) parameter; however, there is a protocol for estimating \(k_0\) using the chi-squared goodness of fit statistic. In the usual chi-squared statistic:

\[\Chi^2 = \sum_i{\frac{(x_i-\mu_i)^2}{\mu_i}}\], we can replace the expected-means (\(\mu_i\)) by their estimates, \(\hat{\mu_i}\), and replace denominators by the corresponding negative multinomial variances. Then we get the following test statistic for negative multinomial distributed data: \[\Chi^2(k_0) = \sum_{i}{\frac{(x_i-\hat{\mu_i})^2}{\hat{\mu_i} \left (1+ \frac{\hat{\mu_i}}{k_0} \right )}}\].

Now we can derive a simple method for estimating the \(k_0\) parameter by varying the values of \(k_0\) in the expression \(\Chi^2(k_0)\) and matching the values of this statistic with the corresponding asymptotic chi-squared distribution. The following protocol summarizes these steps using the cancer data above:
df = (# rows – 1)(# columns – 1) = (3-1)*(4-1) = 6
  • Mean Counts Estimates: The mean counts estimates (\(\mu_j\)) for the 4 different cancer types are:
\[\hat{\mu}_1 = 185/3=61.67\]; \(\hat{\mu}_2 = 125/3=41.67\); and \(\hat{\mu}_3 = 56/3=18.67\).
  • Thus, we can solve the equation above \(\Chi^2(k_0) = 5.261948\) for the single variable of interest -- the unknown parameter \(k_0\). Suppose we are using the same example as before, \(x=\{x_1=5,x_2=1,x_3=5\}\). Then the solution is an asymptotic chi-squared distribution driven estimate of the parameter \(k_0\).

\(\Chi^2(k_0) = \sum_{i=1}^3{\frac{(x_i-\hat{\mu_i})^2}{\hat{\mu_i} \left (1+ \frac{\hat{\mu_i}}{k_0} \right )}}\). \(\Chi^2(k_0) = \frac{(5-61.67)^2}{61.67(1+61.67/k_0)}+\frac{(1-41.67)^2}{41.67(1+41.67/k_0)}+\frac{(5-18.67)^2}{18.67(1+18.67/k_0)}=5.261948.\) Solving this equation for \(k_0\) provides the desired estimate for the last parameter.

Mathematica provides 3 distinct (\(k_0\)) solutions to this equation: {50.5466, -21.5204, 2.40461}. Since \(k_0>0\) there are 2 candidate solutions.
  • Estimates of Probabilities: Assume \(k_0=2\) and \(\frac{\mu_i}{k_0}p_0=p_i\), we have:

\[\frac{61.67}{k_0}p_0=31p_0=p_1\] \[20p_0=p_2\] \[9p_0=p_3\]

Hence, \(1-p_0=p_1+p_2+p_3=60p_0\). Therefore, \(p_0=\frac{1}{61}\), \(p_1=\frac{31}{61}\), \(p_2=\frac{20}{61}\) and \(p_3=\frac{9}{61}\).
Therefore, the best model distribution for the observed sample \(x=\{x_1=5,x_2=1,x_3=5\}\) is \(X \sim NMD\left (2, \left \{\frac{31}{61}, \frac{20}{61},\frac{9}{61}\right\} \right ).\)
Notice that in this calculation, we explicitly used the complete cancer data table, not only the sample \(x=\{x_1=5,x_2=1,x_3=5\}\), as we need multiple samples (multiple sites or columns) to estimate the \(k_0\) parameter.

SOCR Negative Multinomial Distribution Calculator

Problems

References


"-----


Translate this page:

(default)
Uk flag.gif

Deutsch
De flag.gif

Español
Es flag.gif

Français
Fr flag.gif

Italiano
It flag.gif

Português
Pt flag.gif

日本語
Jp flag.gif

България
Bg flag.gif

الامارات العربية المتحدة
Ae flag.gif

Suomi
Fi flag.gif

इस भाषा में
In flag.gif

Norge
No flag.png

한국어
Kr flag.gif

中文
Cn flag.gif

繁体中文
Cn flag.gif

Русский
Ru flag.gif

Nederlands
Nl flag.gif

Ελληνικά
Gr flag.gif

Hrvatska
Hr flag.gif

Česká republika
Cz flag.gif

Danmark
Dk flag.gif

Polska
Pl flag.png

România
Ro flag.png

Sverige
Se flag.gif