Birthday problem with 3+ people?

6 visualizzazioni (ultimi 30 giorni)
scoob
scoob il 22 Ott 2019
Modificato: scoob il 22 Ott 2019
I would like to use Matlab to figure out the probability that at least 3 people have the same birthday in a sample size of 50 people, but am having trouble figuring out how to do the counting. A series of loops perhaps?

Risposta accettata

Jon
Jon il 22 Ott 2019
Here are some ideas that you might use
To generate random birthdays for groups of 50 people - look at randi, ignoring leap years birthdays are numbers between 1 and 365
For each random sample group of 50 people you can use histcounts with 365 bins to count how many people have each birthday
with result of histcounts, you can determine if the sample has three or more people with the same birthday by taking the max and seeing if it is greater than or equal 3
do this N times and then estimate the probability as the number of times that you have 3 or more people with same birthday divided by N

Più risposte (0)

Categorie

Scopri di più su Birthdays in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by