public static double HypgeomDist(int k, int draws, int success, int population)
 {
     return(Hypergeometric.PMF(population, success, draws, k));
 }