- #1
Euler2718
- 90
- 3
Given this libreoffice command:
HYPGEOM.DIST(X; NSample; Successes; NPopulation; Cumulative)
>X is the number of results achieved in the random sample.
>NSample is the size of the random sample.
>Successes is the number of possible results in the total population.
>NPopulation is the size of the total population.
>Cumulative : 0 or False calculates the probability density function. Other values or True calculates the cumulative distribution function.
Consider: Two players have 10 cards each, face down. Player one flips a card over and gets a 6. What's the probability of player two flipping a card greater than six.
Is this the right way to use the command:
=HYPGEOM.DIST(1,10,4,52,0)
It gives ~35.8%. Just wondering if I was interpreting the question and the command right.
Edit: I assumed suits are irrelevant and repetition is allowed.
HYPGEOM.DIST(X; NSample; Successes; NPopulation; Cumulative)
>X is the number of results achieved in the random sample.
>NSample is the size of the random sample.
>Successes is the number of possible results in the total population.
>NPopulation is the size of the total population.
>Cumulative : 0 or False calculates the probability density function. Other values or True calculates the cumulative distribution function.
Consider: Two players have 10 cards each, face down. Player one flips a card over and gets a 6. What's the probability of player two flipping a card greater than six.
Is this the right way to use the command:
=HYPGEOM.DIST(1,10,4,52,0)
It gives ~35.8%. Just wondering if I was interpreting the question and the command right.
Edit: I assumed suits are irrelevant and repetition is allowed.
Last edited: