Excel Practice Flashcards
What is the equation for the sample mean (x_bar)?
=AVERAGE()
What is the equation for the sample (s) standard deviation?
=STDEV.S()
What is the equation for sample size(n)?
=COUNT()
In null hypothesis tests, what is the equation for the sampling distribution mean?
=x_bar
In null hypothesis tests, what is the equation for sampling distribution SD (SE)”?
= sample SD / SQRT(n)
In null hypothesis tests, what is the equation for the Z-statistic?
=(x_bar - u0) / SE
For possible alternate hypotheses testing, what equation do you use to test if the population mean is greater than the null hypothesis mean?
=NORM.S.DIST(z-statistic,TRUE)
For possible alternate hypotheses testing, what equation do you use to test if the population mean is less than the null hypothesis?
=1-NORM.S.DIST(z-statistic,TRUE)
For possible alternate hypotheses testing, what equation do you use to test if the population mean does not equal the null hypothesis mean?
=@*NORM.S.DIST(-ABS(z-statistic),TRUE)
To find center and variability values of the following list, what equations are used? sample size mean median mod min max range standard deviation
Sample size = COUNT() Mean = AVERAGE() Median = MEDIAN() Mode = MODE() Min = MIN() Max = MAX() Range = MAX()-MIN() Stan. Deviation = STDEV.S()
In estimating a large sample mean, what is the equation for alpha (significance level)?
1-level of confidence
What is the level of confidence percentage?
The predetermined value of your choice. You repeat the experiment over and over until you reach this value for high confidence that your device works.
In estimating a large sample mean, what is the equation for the margin of error?
=CONFIDENCE.NORM(alpha, sample SD, sample size)
In estimating a large sample mean, how do you find the lower bound of the confidence interval?
=(sample mean) - (margin of error)
In estimating a large sample mean, how do you find the upper bound of the confidence interval?
=(sample mean) + (margin of error)