Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please do this in Python 3.8 and without numpy. Thanks in advance! Question 5 (10 Points) My Birthday Program Write a well-documented Python program, hmwk4Q5.py,
Please do this in Python 3.8 and without numpy. Thanks in advance!
Question 5 (10 Points) My Birthday Program Write a well-documented Python program, hmwk4Q5.py, that simulates multiple trials of a person walking into a room on N people and determining if their birthday matches any of the other N people in the room. Have your program run the experiment 100, 1000, and 10000 times respectively. For each trial, form three lists of the results as the number of people are varied from 2 to 400 people. The first list is for 100 trials, the second list is for 1000 trials, and the third list is for the 10,000 trials Probability of Being My Birthday - Monte Carlo Simulation 1000 10000 Percentage 0 50 100 300 350 400 150 200 250 Number of People Grading: Correct main() function with outer-for loop (+4 points). Correct inner-for-loop (+4 points). Correct list (+2 points). Question 5 (10 Points) My Birthday Program Write a well-documented Python program, hmwk4Q5.py, that simulates multiple trials of a person walking into a room on N people and determining if their birthday matches any of the other N people in the room. Have your program run the experiment 100, 1000, and 10000 times respectively. For each trial, form three lists of the results as the number of people are varied from 2 to 400 people. The first list is for 100 trials, the second list is for 1000 trials, and the third list is for the 10,000 trials Probability of Being My Birthday - Monte Carlo Simulation 1000 10000 Percentage 0 50 100 300 350 400 150 200 250 Number of People Grading: Correct main() function with outer-for loop (+4 points). Correct inner-for-loop (+4 points). Correct list (+2 points)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started