Solve the so-called "Birthday Problem". Write a program that takes an integer N and uses the function np.random.randint (low = 0, high = N) from numpy to generate a random sequence of integers between...


code in python please thank you


Solve the so-called

Extracted text: Solve the so-called "Birthday Problem". Write a program that takes an integer N and uses the function np.random.randint (low = 0, high = N) from numpy to generate a random sequence of integers between 0 and N – 1. Run experiments to validate the hypothesis that the number of integers N generated until the first repeated value is approximately a) Write a function birthday(N) that returns the number of values generated until a value is repeated as a function of the range of possible values N (from O to N – 1); b) Write a function birthday_sim (N) that repeats birthday(N) a total of n_sim generated; - 20000 times and returns the average of all the numbers

Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here