Difference between revisions of "HyperGeometric distribution"

m (Lchrisman moved page HyperGeometric to HyperGeometric distribution: Restructuring with all dist functions on same page)
(Merged all functions onto one page. Added equations and image.)
Line 1: Line 1:
 
[[Category:Distribution Functions]]
 
[[Category:Distribution Functions]]
[[Category:Doc Status C]] <!-- For Lumina use, do not change -->
+
[[Category:Discrete distributions]]
 +
[[Category:Bounded distributions]]
 +
[[Category:Unimodal distributions]]
 +
[[Category:Univariate distributions]]
 +
 
 +
The hypergeometric distribution describes the number of times an event occurs in a fixed number of trials without replacement -- e.g., the number of red balls in a sample of «Trials» balls drawn without replacement from an urn containing «Size» balls of which «PosEvents» are red.
 +
 
 +
<center><code>HyperGeometric( 100, 700, 1000 )</code> &rarr; [[image:hypergeometric_100_700_1000.png]]</center>
 +
 
 +
== Functions ==
 +
=== HyperGeometric(trials, posEvents, size) ===
 +
Use this to describe a variable whose outcome has a hyperGeometric distribution.
 +
 
 +
=== Prob{{Release||5.1|_}}HyperGeometric(k, trials, posEvents, size) ===
 +
{{Release||5.1|To use, add the [[Distribution Densities Library]] to your model.}}
 +
Returns the probability of outcome «k». It is given by
 +
 
 +
:<math>p(k) = { {\binom{posEvents}{k} \binom{size-posEvents}{trials-k} } \over \binom{size}{trials} }</math>
  
== HyperGeometric(Trials, PosEvents, Size) ==
 
  
The hypergeometric distribution describes the number of times an event occurs in a fixed number of trials without replacement -- e.g., the number of red balls in a sample of «Trials» balls drawn without replacement from an urn containing «Size» balls of which «PosEvents» are red.  
+
=== CumHyperGeometric(k, trials, posEvents, size) ===
 +
{{Release||5.1|To use, add the [[Distribution Densities Library]] to your model.}}
 +
The cumulative probability function for the hyperGeometric distribution. Its value is equal to
 +
 
 +
:<math>F(k) = \sum_{i=0}^{k} { {\binom{posEvents}{i} \binom{size-posEvents}{trials-i} } \over \binom{size}{trials} }</math>
 +
 
 +
Use this function when computing the p-Value for a hyperGeometric statistical test.
 +
 
 +
=== CumHyperGeometricInv(p, trials, posEvents, size) ===
 +
{{Release||5.1|To use, add the [[Distribution Densities Library]] to your model.}}
 +
The inverse cumulative probability function for the hyperGeometric distribution
  
Thus, the parameters are:
+
=== Parameters ===
;«Trials»: The sample size -— e.g., the number of balls drawn from an urn without replacement. Cannot be larger than «Size».
+
;«trials»: The sample size -— e.g., the number of balls drawn from an urn without replacement. Cannot be larger than «Size».
;«PosEvents»: The total number of successful events in the population -- e.g, the number of red balls in the urn.
+
;«posEvents»: The total number of successful events in the population -- e.g, the number of red balls in the urn.
;«Size»: The population size -- e.g., the total number of balls in the urn, red and non-red.
+
;«size»: The population size -- e.g., the total number of balls in the urn, red and non-red.
  
== Library ==
+
=== History ===
Distributions
+
* The analytic functions (ProbHyperGeometric, CumHyperGeometric, and CumHyperGeometricInv) were added as built-in functions in [[Analytica 5.2]].
 +
* In [[Analytica 5.1]] or earlier, the analytic functions require you to add the [[Distributions Density Library]] to your model.
  
 
== See Also ==
 
== See Also ==

Revision as of 19:19, 7 December 2018


The hypergeometric distribution describes the number of times an event occurs in a fixed number of trials without replacement -- e.g., the number of red balls in a sample of «Trials» balls drawn without replacement from an urn containing «Size» balls of which «PosEvents» are red.

HyperGeometric( 100, 700, 1000 )Hypergeometric 100 700 1000.png

Functions

HyperGeometric(trials, posEvents, size)

Use this to describe a variable whose outcome has a hyperGeometric distribution.

Prob_HyperGeometric(k, trials, posEvents, size)

To use, add the Distribution Densities Library to your model. Returns the probability of outcome «k». It is given by

[math]\displaystyle{ p(k) = { {\binom{posEvents}{k} \binom{size-posEvents}{trials-k} } \over \binom{size}{trials} } }[/math]


CumHyperGeometric(k, trials, posEvents, size)

To use, add the Distribution Densities Library to your model. The cumulative probability function for the hyperGeometric distribution. Its value is equal to

[math]\displaystyle{ F(k) = \sum_{i=0}^{k} { {\binom{posEvents}{i} \binom{size-posEvents}{trials-i} } \over \binom{size}{trials} } }[/math]

Use this function when computing the p-Value for a hyperGeometric statistical test.

CumHyperGeometricInv(p, trials, posEvents, size)

To use, add the Distribution Densities Library to your model. The inverse cumulative probability function for the hyperGeometric distribution

Parameters

«trials»
The sample size -— e.g., the number of balls drawn from an urn without replacement. Cannot be larger than «Size».
«posEvents»
The total number of successful events in the population -- e.g, the number of red balls in the urn.
«size»
The population size -- e.g., the total number of balls in the urn, red and non-red.

History

See Also

Comments


You are not allowed to post comments.