Question

In: Statistics and Probability

A. Verify that the method is appropriate, write out formula for your t-statistic, and explain/show the...

A. Verify that the method is appropriate, write out formula for your t-statistic, and explain/show the steps you use to get your value of t. (If you solved this with JMP or Excel Data Toolpak, that is fine, but please either explain what you did or provide screenshots of your input)

B. Explain (possibly with a sentence) how you obtained your p-value, and then explain how your p-value led you to your final conclusion. (Even if you used technology, explain how the p-value could be obtained from the t-statistic and how that p-value leads you to your conclusion

Solutions

Expert Solution

I'm taking a example of one sample t test

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:

  1. The sample mean(x̄). This is given in the question as $130.
  2. The population mean(μ). Given as $100 (from past data).
  3. The sample standard deviation(s) = $15.
  4. Number of observations(n) = 25.

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:

  1. The alpha level: given as 5% in the question.
  2. The degrees of freedom, which is the number of items in the sample (n) minus 1: 25 – 1 = 24.

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).

-------P value Method

P value = P(t(24) > 10)

Use, the t table at 24 degree of freedom, p value = 1- P(t(24) < 10) = 1-0.999999999 = almost 0

Since, p value is less than alpha, so we reject null hypothesis

In other words, it’s highly likely that the mean sale is greater. The sales training was probably a success.


Related Solutions

Show or write the Tobin’s formula and explain how it would be different from the market...
Show or write the Tobin’s formula and explain how it would be different from the market to book value ratio. Explain some uses for it in business decision making such as buying or selling a company. Include in your discussion, the impact intangible assets.
assuming that your t-statistic is 1.17. show how you compute the p-value step by step.
assuming that your t-statistic is 1.17. show how you compute the p-value step by step.
please show your work and write out your solutions in detail by giving formulas and a...
please show your work and write out your solutions in detail by giving formulas and a short summary at the end. Please do not just post about financial calc or excel without explaining how you got the answer. thank you! Consider the following mutually exclusive projects: T=0 1 2 3 Project X: -100 20 30 90 Project Y: -100 80 30 20 Find IRRs for both projects. Find the cross-over rate. Construct a graph, where you will show the NPV...
Please show your working and formula (If possible) -------------------------- Suppose you take out an $840,000, 20-year...
Please show your working and formula (If possible) -------------------------- Suppose you take out an $840,000, 20-year mortgage loan to buy a residential apartment. The interest rate on the mortgage is 4.65% per annum, and payments are required to be made annually at the end of each year. Question: Construct a mortgage amortisation table showing loan balance at the beginning of each period, annual repayment amount, interest payment, the amortisation of the loan and the loan balance for each year.
Required: Show your complete solution.  Write your formula (explicitly) first before actually solving the problem.Clearly...
Required: Show your complete solution.  Write your formula (explicitly) first before actually solving the problem.Clearly define your random variables or events The amount that airlines spend on food per passenger is normally distributed with mean $8.00 and a standard deviation $2.00. a. What percent spend less than $5.00 per passenger? b. What percent spend between $6.00 and $10.00? c. What percent spend more than $12.50?
1. Write out the steps/Describe the muscle control formula for the dip motion 2. Write out...
1. Write out the steps/Describe the muscle control formula for the dip motion 2. Write out the steps/Describe the muscle control formula for the stiff leg deadlift motion.
Find a closed formula for each of the following sequences. Show all work and explain your...
Find a closed formula for each of the following sequences. Show all work and explain your answers. (a) {1, 6, 17, 34, 57, 86, 121, . . .}, where a0 = 1. (b) an = 5an−1 + 4, a0 = 2 (c) an = 10an−1 − 21an−2, a0 = 6, a1 = 26.
Fill in all the remaining blanks in the table below and fill out the appropriate formula each.
Fill in all the remaining blanks in the table below and fill out the appropriate formula each.Residual maturityResidual MaturityInterest rate of Zero coupon bondPrice of Zero Coupon Bondone-year intrinsic forward interest ratepar yield18.00%27.00%36.00%
Write the regression equation. Discuss the statistical significance of the model using the appropriate regression statistic...
Write the regression equation. Discuss the statistical significance of the model using the appropriate regression statistic at a 95% level of confidence. Discuss the statistical significance of the coefficient for the independent variable using the appropriate regression statistic at a 95% level of confidence. Interpret the coefficient for the independent variable. What percentage of the observed variation in income is explained by the model? Predict the value of a person’s income with 3 children, using this regression model. SUMMARY OUTPUT...
2. Write a simulation in R that shows the distribution of the t-test statistic when the...
2. Write a simulation in R that shows the distribution of the t-test statistic when the null hypothesis is true. To do this, you should use a for loop that repeatedly performs t-tests comparing sample means of data that come from distributions with the same population mean and standard deviation. Use rnorm() to take samples, t.test() to perform the t-tests, and use “$statistic” to extract the t-test statistic from the t.test() procedure (e.g. t.test(x,y)$statistic). Make a histogram of the test...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT