PHP 8.4.0 RC4 available for testing

stats_dens_pmf_hypergeometric

(PECL stats >= 1.0.0)

stats_dens_pmf_hypergeometricLa fonction de masse de probabilité de la distribution hypergéométrique

Description

stats_dens_pmf_hypergeometric(
    float $n1,
    float $n2,
    float $N1,
    float $N2
): float

Renvoie la masse de probabilité à n1, où la variable aléatoire suit la distribution hypergéométrique dont le nombre d'échecs est n2, le nombre d'échantillons de succès est N1, et le nombre d'échantillons d'échecs est N2.

Liste de paramètres

n1

Le nombre de succès, à partir duquel la masse de probabilité est calculée

n2

Le nombre d'échecs de la distribution

N1

Le nombre d'échantillons de succès de la distribution

N2

Le nombre d'échantillons d'échecs de la distribution

Valeurs de retour

La masse de probabilité à n1 ou false en cas d'échec.

add a note

User Contributed Notes 1 note

up
0
brendan at gamblingtec dot com
5 years ago
You can use this method to work out lottery odds:

/**
* N is the population size OR total balls in the lottery draw
* K is the number of success states in the population OR the number of correct balls drawn from the pool
* n is the number of draws OR the number of times we draw from the pool to get the winning numbers.
*/

$N = 49; //Total balls in the pool
$K = 1; //Successful matches to win

$method = new Hypergeometric($N, $K, $K);
$odds = $method->pmf($K);

return 1/$odds;

//Will return 49
To Top