Difference between revisions of "HyperGeometric distribution"

(Added anchors)
m (fixed unmatching quote mistake)
Line 13: Line 13:
 
Use this to describe a variable whose outcome has a hyperGeometric distribution.
 
Use this to describe a variable whose outcome has a hyperGeometric distribution.
  
=== <div id="ProbHyperGeometric''>Prob{{Release||5.1|_}}HyperGeometric(k, trials, posEvents, size)</div> ===
+
=== <div id="ProbHyperGeometric">Prob{{Release||5.1|_}}HyperGeometric(k, trials, posEvents, size)</div> ===
 
{{Release||5.1|To use, add the [[Distribution Densities Library]] to your model.}}
 
{{Release||5.1|To use, add the [[Distribution Densities Library]] to your model.}}
 
Returns the probability of outcome «k». It is given by
 
Returns the probability of outcome «k». It is given by
Line 20: Line 20:
  
  
=== <div id="CumHyperGeometric''>CumHyperGeometric(k, trials, posEvents, size)</div> ===
+
=== <div id="CumHyperGeometric">CumHyperGeometric(k, trials, posEvents, size)</div> ===
 
{{Release||5.1|To use, add the [[Distribution Densities Library]] to your model.}}
 
{{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
 
The cumulative probability function for the hyperGeometric distribution. Its value is equal to

Revision as of 19:25, 7 December 2018



Release:

4.6  •  5.0  •  5.1  •  5.2  •  5.3  •  5.4  •  6.0  •  6.1  •  6.2  •  6.3  •  6.4  •  6.5  •  6.6


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.

ProbHyperGeometric(k, trials, posEvents, size)

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)

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)

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.