It seems that you have calculated the values correctly. (I checked with R.)
Now, you know from the t-table that only 5% of the t-values will bee larger (in absolute value) than 2.26. So it would be quite rare to observe a t-value larger than 2.26 if the null hypothesis is true.
But you have observed a t-value as large as 3.04. So, how much do you believe in the null hypothesis?
The t-test is based on the normal distribution. The data does not really seems to be normally distributed (from a QQ-plot). Maybe you should ask your teacher how one really should analyse these data.
Code:local1 <- c(16.8 ,11.7,15.6,16.7,17.5, 18.1, 14.1, 21.8, 13.9 ,20.8) chain1 <- c(22,15.2,18.7,15.6,20.8,19.5, 17,19.5,16.5,24 ) t.test(local1,chain1,paired =TRUE) hist(local1-chain1) qqnorm(local1-chain1)





Reply With Quote
