What the calculator does
This tool converts a z-score (your test statistic) into both one-tailed and two-tailed p-values. It uses the standard normal distribution to determine the probability of observing a result as extreme as (or more extreme than) the one you calculated, assuming your null hypothesis is true. This is essential for deciding whether to reject or accept your hypothesis in statistical testing.
The formula
p-value = 1 − Φ(|z|) for one-tailed; p-value = 2 × [1 − Φ(|z|)] for two-tailed
Where Φ is the cumulative distribution function (CDF) of the standard normal distribution, and |z| is the absolute value of your z-score.
Worked example
Imagine you conducted a hypothesis test and calculated a z-score of 2.15.
Step 1: Take the absolute value
|2.15| = 2.15
Step 2: Find the CDF value
Using the standard normal distribution table or calculator, Φ(2.15) ≈ 0.9842
Step 3: Calculate one-tailed p-value
One-tailed p-value = 1 − 0.9842 = 0.0158
Step 4: Calculate two-tailed p-value
Two-tailed p-value = 2 × 0.0158 = 0.0316
Interpretation:
- If your test was one-tailed, the p-value is 0.0158 (1.58%). This is less than 0.05, so you would reject the null hypothesis at the 5% significance level.
- If your test was two-tailed, the p-value is 0.0316 (3.16%). Still below 0.05, so again you reject the null hypothesis.
The one-tailed result suggests stronger evidence (smaller p-value) because you're testing in only one direction, whereas the two-tailed test splits the significance region between both tails of the distribution.
Common mistakes
Confusing p-value with probability of truth: A p-value of 0.03 does not mean there's a 3% chance your hypothesis is true. It means there's a 3% probability of getting your result (or more extreme) if the null hypothesis actually is true.
Choosing the wrong tail: Make sure you know whether your research question demands a one-tailed or two-tailed test before running your analysis. Deciding after seeing results inflates false-positive rates.
Ignoring effect size: A very small p-value with a tiny effect size may be statistically significant but practically meaningless. Always report both.
Threshold confusion: The 0.05 cutoff is conventional but arbitrary. Some fields use 0.01 or 0.001. Your discipline and journal guidelines should guide this choice.
This estimate is for statistical reference only and should not replace professional statistical consultation for research, medical, or regulatory decisions.