Answer :
Final answer:
This question pertains to performing a t-test to determine if bananas sold by a supermarket are heavier than the notional mean weight of 100g. It also involves interpreting p-values and confidence intervals. A sensible null hypothesis is stated, and R is used to perform the t-test and calculate the confidence intervals.
Explanation:
a. A sensible null hypothesis would be that the mean weight of bananas from this supermarket is equal to the notional 100g mean weight.
b. The p-value is a measure of the strength of evidence against the null hypothesis. In this context, 'more extreme' means values that are farther away from the notional mean weight, both on the heavier and lighter side.
c. A one-sided test is needed because the researcher is only interested in whether the bananas are heavier than the notional mean weight.
d. To perform a student t-test using R, you can use the t.test() function and pass the weight data as the argument. The result will provide the test statistic, p-value, and the conclusion about the hypothesis.
e. A 95% confidence interval for the mean weight can be calculated using the t.test() function in R, and it will provide a range within which the true mean weight is likely to fall. Similarly, a 99% confidence interval can be obtained by specifying the 'conf.level' parameter in the t.test() function.
f. To perform a Z test, you would need to know the true population standard deviation, which is not given in this question. Therefore, a Z test is not appropriate in this case.
Learn more about T-tests in Hypothesis Testing here:
https://brainly.com/question/30484892
#SPJ11