From charlesreid1

No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Hypergeometric distribution counts the number of ways you can obtain particular target values when sampling from a population without replacement.
Hypergeometric distribution counts the number of ways you can obtain particular target values when sampling from a population without replacement.


This describes many systems, most notably a deck of 52 [[Cards]] and dealing e.g. poker hands.
This describes many systems - most notably a deck of 52 [[Cards]] (e.g. poker hands).


Hypergeometric distribution:
Hypergeometric distribution:


<math>
<math>
\displaystyle{
\dfrac{
\dfrac{
\binom{K}{k} \binom{N-K}{n-k}
\binom{K}{k} \binom{N-K}{n-k}
}{
}{
\binom{N}{n}
\binom{N}{n}
}
}
}
</math>
</math>

Latest revision as of 21:34, 9 March 2019

Hypergeometric distribution counts the number of ways you can obtain particular target values when sampling from a population without replacement.

This describes many systems - most notably a deck of 52 Cards (e.g. poker hands).

Hypergeometric distribution:

$ \displaystyle{ \dfrac{ \binom{K}{k} \binom{N-K}{n-k} }{ \binom{N}{n} } } $

where:

$ \begin{align} K &=& \mbox{Successes} \\ N &=& \mbox{Pop. size} \\ k &=& \mbox{Targets} \\ n &=& \mbox{Sample size} \end{align} $


Flags