In: Statistics and Probability
almon: Assume that the weights of Chinook Salmon in the Columbia River are normally distributed. You randomly catch and weigh 25 such salmon. The mean weight from your sample is 23.7 pounds with a standard deviation of 3.5 pounds. Test the claim that the mean weight of Columbia River salmon is greater than 23 pounds. Test this claim at the 0.05 significance level. (a) What type of test is this? This is a left-tailed test. This is a two-tailed test. This is a right-tailed test. (b) What is the test statistic? Round your answer to 2 decimal places. t x = (c) Use software to get the P-value of the test statistic. Round to 4 decimal places. P-value = (d) What is the conclusion regarding the null hypothesis? reject H0 fail to reject H0 (e) Choose the appropriate concluding statement. The data supports the claim that the mean weight of Columbia River salmon is greater than 23 pounds. There is not enough data to support the claim that the mean weight of Columbia River salmon is greater than 23 pounds. We reject the claim that the mean weight of Columbia River salmon is greater than 23 pounds. We have proven that the mean weight of Columbia River salmon is greater than 23 pounds.
R code
a <- 23
s <- 3.5
n <- 25
xbar <- 23.7
t <- (xbar-a)/(s/sqrt(n))
t
pt(-abs(t),df=n-1)
#output
0.1636434