In: Statistics and Probability
I'm giving example of one sample t-test for population mean
The one sample t test compares the mean of your sample data to a known value. For example, you might want to know how your sample mean compares to the population mean. You should run a one sample t test when you don’t know the population standard deviation or you have a small sample size
Assumptions of the test (your data should meet these requirements for the test to be valid):
Data is independent.
Data is collected randomly.
The data is approximately normally distributed.
One Sample T Test Example
Your company wants to improve sales. Past sales data indicate that the average sale was $100 per transaction. After training your sales force, recent sales data (taken from a sample of 25 salesmen) indicates an average sale of $130, with a standard deviation of $15. Did the training work? Test your hypothesis at a 5% alpha level.
Step 1: Write your null hypothesis
statement (How to state a null hypothesis). The accepted hypothesis
is that there is no difference in sales, so:
H0: μ = $100.
Step 2: Write your alternate hypothesis.
This is the one you’re testing. You think that there is a
difference (that the mean sales increased), so:
H1: μ > $100.
Step 3: Identify the following pieces of information you’ll need to calculate the test statistic. The question should give you these items:
Step 4: Insert the items from above into
the t score formula.
t = (130 – 100) / ((15 / √(25))
t = (30 / 3) = 10
This is your calculated t-value.
Step 5: Find the t-table value. You need two values to find this:
Look up 24 degrees of freedom in the left column and 0.05 in the top row. The intersection is 1.711.This is your one-tailed critical t-value.
What this critical value means is that we would expect most values to fall under 1.711. If our calculated t-value (from Step 4) falls within this range, the null hypothesis is likely true.
Step 5: Compare Step 4 to Step 5. The value from Step 4 does not fall into the range calculated in Step 5, so we can reject the null hypothesis. The value of 10 falls into the rejection region (the left tail).
In other words, it’s highly likely that the mean sale is greater. The sales training was probably a success.