In words
What it is, why it matters, and what it is like.
Why am I learning this?
You make decisions based on data every day, from A/B tests on your website to clinical trial results in medicine. The significance level is the rule you set beforehand to decide when a result is strong enough to act on and when it is likely just random noise. Imagine you are testing a new feature to see if it increases user clicks. You see a 2% increase in your small test group. Is that real, or did it happen by chance? A significance level gives you the standard for what 'chance' looks like. Without it, you might implement a change that actually hurts performance because you mistook luck for truth. This concept protects you from false alarms (thinking an effect is real when it isn't) and helps you avoid missing genuine effects. It is the foundation of reliable data analysis.
The idea, in plain terms
Imagine you are a judge in a courtroom. The law starts with the presumption that the defendant is innocent. In statistics, this starting assumption—that nothing interesting is happening, or that two groups are identical—is called the null hypothesis. The prosecution must present evidence to prove guilt. You cannot simply guess; you need evidence strong enough to outweigh reasonable doubt.
What counts as 'beyond a reasonable doubt'? You set a threshold in advance. In statistics, we often use a common standard where we accept a 5% risk of being wrong when we declare the defendant guilty. This 0.05 is the significance level. It means: if the defendant were actually innocent (the null hypothesis were true), you would still wrongly convict them 5% of the time.
Let's look at concrete numbers. Suppose a new drug is tested against a placebo. The null hypothesis is that the drug has no effect. You calculate a p-value, which tells you how likely it is to see your results if the drug truly did nothing. If the p-value is 0.03 (meaning there is only a 3% chance of seeing these results by random luck), and your significance level is 0.05, you reject the null hypothesis. You conclude the drug works.
Why 0.05? It is an arbitrary convention, not a law of nature. If the stakes are life-and-death, such as approving a new vaccine, you might choose a stricter level like 0.01 (accepting only a 1% risk of error). This means you need much stronger evidence to reject the null hypothesis. If the stakes are lower, like testing which color button gets more clicks, 0.05 might be sufficient.
The key is that you must choose this threshold before you look at the data. If you wait until after seeing a 4% result and then say 'I’ll use a 0.05 level,' you are moving the goalposts. You are forcing the result to fit your decision, which invalidates the test.
An analogy
Think of a significance level as the height of a high jump bar. The athlete is your data's ability to show an effect. The null hypothesis is the claim that 'this athlete cannot clear this height.' You set the bar at one metre before the jump begins.
If the athlete clears the bar, you reject the claim that they can't jump it. If they fail to clear it, you do not prove they are incapable; you just say there isn't enough evidence yet to show they can. The height of the bar is your significance level. Setting the bar too high (a very low significance level like 0.01) makes it hard to reject the null hypothesis, meaning you might miss a talented athlete (a false negative). Setting the bar too low (a high significance level like 0.20) means almost anyone clears it, so you will declare many athletes successful who are actually average or worse (false positives).
The conventional 0.05 is a compromise, balancing the risk of these two types of errors.
A caveat: in high jump, the height is fixed and the result is binary. In statistics, the 'height' is a probability threshold, and the 'jump' is a calculation derived from data that varies each time you collect new samples.
Definition
A significance level is a pre-set threshold, typically 0.05, representing the maximum probability of error you are willing to accept when concluding that an effect exists when it actually does not. It is the standard against which the p-value is compared to determine statistical significance.
Where this sits
The significance level is directly tied to Hypothesis Testing, where it serves as the cut-off for accepting or rejecting a null hypothesis. It is also linked to Confidence Intervals; a 95% confidence interval corresponds to a 0.05 significance level, meaning they are two sides of the same coin: one estimates the range of plausible values, while the other tests specific claims about those values.