In: Statistics and Probability
In the league in which you curl, a coin is flipped prior to the game to determine which team gets the hammer in the first end. You have played 12 games in total and you’re beginning to think that the chief umpire (who does the coin flipping) is biased against you and is somehow causing you to lose the coin flips. Of the 12 games you’ve played you’ve only won the coin flip on 2 occasions. Do you have sufficient evidence (at α = .05) to show that the chief umpire is not flipping the coin fairly?
Let our null hypothesis be,
H0 : The chief umpire is fair, i.e. probability of success, p = 0.5 ( as it should be for a coin toss ).
and the alternate hypothesis will be,
H1 : The chief umpire is biased against you, i.e. probability of success, p < 0.5.
As we know that outcome of a coin toss follows binomial distribution, the test will be a one sample binomial test.
Here the total number of experiment is, n = 12.
The number of success, B = 2.
Given level of significance is = 0.05.
Our test statistic is the number of successes, B = 2.
We reject H0 if
where the constant is chosen to make the type 1 error probability equal to . The number is the lower percentile point of the binomial distribution with sample size n (here, n=12) and success probability p0 (here, p0= 0.5).
We can find the exact value of using R. Alternatively, for p-value approach,
Using R code
binom.test(x=2,n=12,p=0.5,alternative="less")
we can find the p-value for the test, which is 0.01929, which is less than 0.05 (or )
So in the light of the given data, we can reject the null hypothesis at 5% level of significance and can conclude that the chief umpire is biased against you.
Please Upvote if the answer solves your problem.