Question

In: Statistics and Probability

A first year statistics class took part in a simple experiment. Each person took their pulse...

A first year statistics class took part in a simple experiment. Each person took their pulse rate. They then flipped a coin and, if it came up tails, they ran in place for one minute. Everyone then took their pulse a second time. Of the 92 students in the class, 32 ran in place. In repetitions of this experiment, the number that run in place should have a binomial distribution with n = 92 trials and probability of success p = 1/2. a. Simulate 100 repetitions of this experiment using the commands given below. In how many of the 100 experiments did 32 or fewer people have to run? b. Make a histogram of the 100 observations and describe its important characteristics (shape, location, spread and outliers). c. Using software, calculate the probability of getting 32 or fewer tails in 92 tosses of a fair coin. d. Does it seem likely that only 32 of the 92 students got tails? Give a reasonable explanation for what happened.

Solutions

Expert Solution

The number of students that run in place has a binomial distribution with trials and probability of success

a) The experiment is simulated 100 times. R code below.
set.seed((57778))
n <- 100
n32 <- 0
n32_less <- 0
num_Tails <- array(dim = n)
for (i in 1:n)
{
X <- sample(c("T","H"),size=92,replace = TRUE, prob=c(0.5,0.5))
Tails <- length(X[which(X=="T")])
if (Tails==32)
{
n32 <- n32 + 1
}
if (Tails <=32)
{
n32_less <- n32_less + 1
}
num_Tails[i] <- Tails
}
n32/n
n32_less/n

In 1 of the 100 experiments did 32 or fewer people have to run.

b) The histogram of the observations is plotted below.

R code below.

plot(1:1)
dev.new()
hist(num_Tails, col="sky blue", lwd=2, xlab="Trial", ylab = "Number of tails", main="Histogram")

Observations below 32 and above 55 are outliers. They are very unlikely. The histogram looks like Binomial distribution.

The distribution peaks around 46.

c)  The probability of getting 32 or fewer tails in 92 tosses of a fair coin is

d) The probability of getting 32 of the 92 students got tails is

Since the coin is fair in 92 tosses the mean of the distribution is 46. So most probably 40 to 50 tails are most likely.


Related Solutions

In a statistics class, 8 students took their pulses before and after an exam. The pulse...
In a statistics class, 8 students took their pulses before and after an exam. The pulse rates (beats per minute) of the students before and after the exam were obtained separately and are shown in the table. Treat this as though it were a random sample of statistics students. Test the hypothesis that the mean of statistics students' pulse rates is higher after an exam using a significance level of 0.05. Do the 5-step hypothesis test and submit an image...
Students in a statistics class took their first test. The following are the score they earned....
Students in a statistics class took their first test. The following are the score they earned. Create a histogram for the data and describe the findings Scores(62,87,81,69,69 ,87,60,45,95,76,76 62,71,65,67,67,72,80,40,77,87,58 84,73,90,64,64,89) a)Find the mean, median, and modal class. b)What is inter quartile range? c)What is standard deviation of the test score? d)Is the score of 40 unusual? Why?
In a large class of introductory Statistics​ students, the professor has each person toss a coin...
In a large class of introductory Statistics​ students, the professor has each person toss a coin 29 times and calculate the proportion of his or her tosses that were heads. Complete parts a through d below. The Independence Assumption (is or is not) )_____satisfied because the sample proportions (are or are not)_____independent of each other since one sample proportion (can affect or does not affect)______another sample proportion. The​Success/Failure Condition is not satisfied because np=____ and nq=____which are both (less than...
A: You recently took a statistics class in a large class with n = 500 students....
A: You recently took a statistics class in a large class with n = 500 students. The instructor tells the class that the scores were Normally distributed, with a mean of 7 2 (out of 100 ) and a standard deviation of 8 , but when you talk to other students in the class, you find out that more than 30 students have scores below 45 . That violates which rule for the Normal distribution? the 30–60–90 rule the 1–2–3...
Below are data for n = 20 individuals indicating the resting pulse rate of each person,...
Below are data for n = 20 individuals indicating the resting pulse rate of each person, and whether or not that person regularly exercises. Exercise and pulse rate data Person Resting pulse rate Regularly exercises 1 72 No 2 62 Yes 3 72 Yes 4 84 No 5 60 Yes 6 63 Yes 7 66 No 8 72 No 9 75 Yes 10 60 Yes 11 62 No 12 84 No 13 76 No 14 60 Yes 15 52 Yes...
Assume that the Student class is part of a generalization/specialization hierarchy, with University Person as a...
Assume that the Student class is part of a generalization/specialization hierarchy, with University Person as a general class. What attributes would Student inherit from University Person? What are attributes are unique to the Student class, which all University Persons would not have?
Recall the survey you took during the first week of class. Oneof the questions was...
Recall the survey you took during the first week of class. One of the questions was “do you agreethat it is inappropriate to speak on a cellphone while at a restaurant?” Of the 1913 females thatresponded to the survey, 1729 agreed with this statement. Of the 1276 males that responded to thissurvey, 1111 agreed with this statement. Test to see if there is any difference between males andfemales with respect to how they feel about this issue. Use a significance...
for the first part of the experiment, in which you are varying the amount of tyrosinase,...
for the first part of the experiment, in which you are varying the amount of tyrosinase, how many millimeters of 15mM L-DOPA will be in each tube?
The 90 students in a statistics class are categorized by gender and by the year in...
The 90 students in a statistics class are categorized by gender and by the year in school. The numbers are listed in the following table: Year in School Freshman Sophmore Junior Senior Gender Male 1 4 8 17 Female 23 17 13 7 Test the null hypothesis that there is no association between the year in school and the gender using a 1% significance level. Be sure to specify the test statistic with degrees of freedom, the P-value or critical...
#1 The population of scores on the in-person version of Dr. Hale’s first statistics test forms...
#1 The population of scores on the in-person version of Dr. Hale’s first statistics test forms a normal distribution with μ = 72 and σ = 6. He thinks the online class will do significantly better because they do a TON of extra homework that the other class doesn’t do. He gives a random sample of n = 25 students the test, and this sample got an average of 75. What conclusion should he draw if this was a 2-tailed...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT