During the summer of 2018, Coldstream Country Club in Cincinnati,Ohio, collected data on 443 rounds of golf played from its white tees. A portion of the data for each golfer’s score on the twelfth hole are shown in the following table (check the file “Coldstream12.csv” for the complete dataset).
## Hole_12_Score
## 1 6
## 2 7
## 3 5
## 4 7
## 5 5
## 6 5
## 7 5
## 8 4
## 9 5
## 10 5
Construct an empirical discrete probability mass function for the player scores on the twelfth hole.
A par is the score that a good golfer is expected to get for the hole. For hole number 12, par is four. What is the probability of a player scoring less than or equal to par on hole number 12?
What is the expected score for hole number 12?
What is the variance for hole number 12?
What is the standard deviation for hole number 12?
In Gallup’s Annual Consumption Habits Poll, telephone interviews were conducted for a random sample of 1014 adults aged 18 and over. One of the questions was, “How many cups of coffee, if any, do you drink on an average day?” The following table shows the results obtained (Gallup website).
## Number of Cups per Day Number of Responses
## 1 0 365
## 2 1 264
## 3 2 193
## 4 3 91
## 5 4 101
Define a random variable x = number of cups of coffee consumed on an average day.
The CDF of a random variable x is shown in the following table.
## x F(x)
## 1 1 1/8
## 2 2 3/8
## 3 3 3/4
## 4 4 1
Determine:
Suppose a company produces t-shirts with logos of a football team.Each t-shirt has a unique number from 1 to 20 assigned to it. The number assigned to each t-shirt follows a discrete uniform distribution.
What is the probability that a randomly selected t-shirt will have a number between 5 and 10, inclusive?
Find the expected value of the number assigned to a t-shirt.
If a customer purchases three t-shirts at random, what is the probability that all three t-shirts will have even numbers?
If a customer purchases two t-shirts at random, what is the probability that at least one of the t-shirts will have a number less than or equal to 5?
Suppose a sample of 20 Colombians is selected as part of a study of the state of the nation. Colombians in the sample are asked whether or not they are satisfied with the way things are going in Colombia.
Compute the probability that exactly 4 of the 20 Colombians surveyed are satisfied with the way things are going in Colombia.
Compute the probability that at least 2 of Colombians surveyed are satisfied with the way things are going in Colombia.
For the sample of 20 Colombians, compute the expected number of Colombians who are satisfied with the way things are going in Colombia.
For the sample of 20 Colombians, compute the variance and standard deviation of the number of Colombians who are satisfied with the way things are going in Colombia.
A survey company asked to a representative sample of teenagers in England how have they listened to music in the past 12 months. Nearly 35% of the teenagers said they use Spotify. Suppose 10 English teenagers are selected randomly to be interviewed about how they listen to music.
What is the probability that none of the 10 teenagers uses Spotify?
What is the probability that 4 of the 10 teenagers use Spotify?
What is the probability that at least 2 of the 10 teenagers use Spotify?
What is the probability that less than 3 of the 10 teenagers use Spotify?
What is the probability that between 2 and 8 (inclusive) of the 10 teenagers use Spotify?
In R, the runif() function can be used to generate
random numbers between a and b, with b > a.
If we let x denote a random number generated using
runif(), then x is a continuous random variable
with the following probability density function (PDF).
f(x) = 1 for a ≤ x ≤ b f(x) = 0 elsewhere
Suppose that a = 0 and b = 1.
runif() and create
a histogram.A Gallup Daily Tracking Survey found that the mean daily discretionary spending by Americans earning over $90,000 per year was $136 per day. The discretionary spending excluded home purchases, vehicle purchases, and regular monthly bills. Let x = the discretionary spending per day and assume that a uniform probability density function applies with f(x) = 0.00625 for a ≤ x ≤ b.
The American Automobile Association (AAA) reported that families planning to travel over the Labor Day weekend spend an average of $749. Assume that the amount spent is normally distributed with a standard deviation of $225.
Given that z is a standard normal random variable, find z for each situation.
Anderson, D.R., Sweeney, D.J., Williams, T.A., Camm, J.D. & Cochran, J.J., 2016. Statistics for Business & Economics, 13th ed. Cengage Learning, Boston.