top of page

Hypothesis Testing for Beginners — Simplest Explanation


Hypothesis testing is an important tool for Data Scientists and Researchers that allows them to make decisions based on evidence. In this article, we will explore the basics of hypothesis testing, including the steps involved in conducting a hypothesis test, as well as some common misconceptions.


What is a Hypothesis?

A hypothesis is a statement that we believe to be true. For example, we might hypothesize that a new drug is effective at treating a particular disease. To test this hypothesis, we need to gather data and analyze it using statistical methods.


The Steps of Hypothesis Testing

Step 1 : State the Null Hypothesis (H0)

Null hypothesis (H0) — The null hypothesis is the default position that there is no effect or difference between groups.

The null hypothesis (H0) is a statement of “no effect” or “no difference” between two populations. It represents the status quo, or the situation in which nothing has changed. For example, if we are testing whether a new drug is effective in treating a disease, the null hypothesis would be that the drug has no effect on the disease.

Step 2 : State the Alternative Hypothesis (Ha)

Alternative Hypothesis (H1) — The alternative hypothesis states that a population parameter is smaller, greater, or different than the hypothesized value in the null hypothesis. The alternative hypothesis is what you might believe to be true or hope to prove true.

The alternative hypothesis (Ha) is a statement that contradicts the null hypothesis and represents the effect or difference that we are trying to find evidence for. It is the statement that we will accept if we reject the null hypothesis. Using the same example as above, the alternative hypothesis would be that the drug is effective in treating the disease.

Step 3 : Determine the Level of Significance (α)

The level of significance, denoted by α, represents the likelihood of rejecting the null hypothesis when it is actually true. Typically, the level of significance is set at 0.05 or 0.01, which means that there is a 5% or 1% chance, respectively, of rejecting a true null hypothesis.

It is important to note that the level of significance is not the same as the p-value, which is the probability of obtaining a test statistic as extreme or more extreme than the observed value, assuming the null hypothesis is true. The p-value is compared to the level of significance to determine whether to reject or fail to reject the null hypothesis.

Step 4 : Collect Data and Calculate Test Statistic

The test statistic is a numerical value that is calculated based on the sample data, and it is used to determine whether to reject or fail to reject the null hypothesis. The calculation of the test statistic depends on the type of hypothesis test being performed.


For example, if we are testing whether the mean height of a population is equal to a certain value, we would calculate a t-test statistic. This involves calculating the difference between the sample mean and the hypothesized population mean, and dividing it by the standard error of the sample mean.


Step 5 : Determine the P-Value

P-value is the probability of observing a test statistic as extreme or more extreme than the one calculated from the sample data, assuming the null hypothesis is true.

We can use a one-sample t-test to test this hypothesis, with a significance level (α) of 0.05. We calculate the test statistic as: t statistic= (sample mean — hypothesized mean) / (standard deviation / sqrt(sample size)) = (173–170) / (5 / sqrt(50)) = 2.82 Now, we need to determine the p-value for this test statistic. We can use a t-distribution table or a statistical software to find the probability of getting a t-value as extreme or more extreme than 2.82, with 49 degrees of freedom (sample size — 1). Let’s assume that the p-value we obtain is 0.006. Since the p-value is less than our significance level of 0.05, we reject the null hypothesis and conclude that there is evidence to suggest that the mean height of students in the school is greater than 170 cm. The smaller the p-value, the stronger the evidence against the null hypothesis.

Step 6 : Make a Decision

After calculating the test statistic and determining the p-value, the next step in hypothesis testing is to make a decision. This involves comparing the p-value to the level of significance (α) set at the beginning of the test.

If the p-value is less than α, then we reject the null hypothesis and conclude that there is sufficient evidence to support the alternative hypothesis. This means that the result is statistically significant, and we can confidently make conclusions based on the sample data.

On the other hand, if the p-value is greater than or equal to α, then we fail to reject the null hypothesis. This means that the result is not statistically significant, and we cannot conclude that the alternative hypothesis is true based on the sample data.

Let’s take a simple example to understand this. Suppose a pharmaceutical company has developed a new drug that they claim reduces blood pressure in patients. The null hypothesis is that the drug has no effect on blood pressure, while the alternative hypothesis is that the drug does have an effect. To test this hypothesis, the company conducts a clinical trial on 100 patients and measures their blood pressure before and after taking the drug. They calculate a p-value of 0.03 and set the level of significance at α = 0.05. Since the p-value (0.03) is less than the level of significance (0.05), we can reject the null hypothesis and conclude that the drug does have a significant effect on reducing blood pressure in patients. The company can then confidently market the drug as an effective treatment for high blood pressure based on the sample data.



Common Misconceptions One common misconception about hypothesis testing is that rejecting the null hypothesis means that the alternative hypothesis is true. However, this is not necessarily the case. Rejecting the null hypothesis only means that there is evidence to support the alternative hypothesis. Another common misconception is that a small P-value means that the alternative hypothesis is true. However, a small P-value only suggests that the null hypothesis should be rejected in favor of the alternative hypothesis. Usecases in Various Industries

  1. Healthcare: Hypothesis testing is used to test new treatments, medications and procedures. For example, a hypothesis test can be conducted to determine if a new drug is more effective than an existing one.

  2. Marketing: Hypothesis testing is used to determine the effectiveness of marketing campaigns. For example, a hypothesis test can be conducted to determine if a new advertisement is more effective than an existing one.

  3. Finance: Hypothesis testing is used to make investment decisions. For example, a hypothesis test can be conducted to determine if an investment strategy is more effective than a traditional one.

  4. Manufacturing: Hypothesis testing is used to improve product quality and reduce defects. For example, a hypothesis test can be conducted to determine if a new manufacturing process is more efficient than an existing one.

  5. Education: Hypothesis testing is used to evaluate teaching methods and educational programs. For example, a hypothesis test can be conducted to determine if a new teaching method is more effective than an existing one.

  6. Agriculture: Hypothesis testing is used to improve crop yields and reduce costs. For example, a hypothesis test can be conducted to determine if a new fertilizer is more effective than an existing one.


Comments


bottom of page