500
The Celtics want to simulate the odds of any given team member making a free throw for next season. Based on data taken from the current season, the average probability of a Celtics player making a free throw is 60%. What is one correct procedure for designing a simulation to estimate this probability?
Key component: whether a shot is made or not.
Assumptions: P(shot made) = .6 P(no shot) = .4
All shots are independent from each other
Model: Random # 1-10 1-6 = shot made 7-10 = no shot
Trial: Randomly generate # 1-10 5 times
T1: 1 6 4 8 6 4 shots made of 5 = 80%
T2: 9 10 6 9 2 2 shots made of 5 = 40%
T3: 8 3 6 6 8 3 shots made of 5 = 60%
Complete 25-30 trials and record results.
Find the average of the averages.