PP Calculator (P-value & Proportion)
Calculate p-value, z-score, and statistical significance for proportion tests
A p-value (probability value) is the probability of obtaining test results at least as extreme as the observed results, assuming that the null hypothesis is true. A small p-value (typically ≤ 0.05) indicates strong evidence against the null hypothesis, suggesting that the observed effect is statistically significant.
p ≤ 0.05: Statistically significant - reject the null hypothesis
p > 0.05: Not statistically significant - fail to reject the null hypothesis
p ≤ 0.01: Highly statistically significant
p ≤ 0.001: Very highly statistically significant
Two-tailed test: Tests for any difference (increase or decrease). Used when you're interested in whether the proportion is different from the hypothesized value in either direction.
One-tailed test (greater): Tests if the proportion is greater than the hypothesized value.
One-tailed test (less): Tests if the proportion is less than the hypothesized value.
For a valid proportion test, your sample should satisfy:
- n × p ≥ 10 and n × (1-p) ≥ 10 (normal approximation condition)
- Random sampling from the population
- Independent observations
For small samples, consider using exact binomial tests instead.
The Z-score (test statistic) measures how many standard deviations your sample proportion is from the hypothesized proportion. A larger absolute Z-score indicates stronger evidence against the null hypothesis. The p-value is derived from the Z-score using the standard normal distribution.
Yes! This calculator is perfect for A/B testing. Use the Two Proportion Test to compare conversion rates between control (A) and treatment (B) groups. Input the conversion rate (proportion) and sample size for each group to determine if the difference is statistically significant.
Statistical significance (typically p < 0.05) means that the observed difference is unlikely to have occurred by random chance alone. It suggests that there is likely a real effect or difference. However, statistical significance doesn't necessarily mean practical significance - consider effect size and real-world importance as well.
One Proportion Z-test: z = (p̂ - p₀) / √(p₀(1-p₀)/n)
Two Proportion Z-test: z = (p̂₁ - p̂₂) / √(p̂(1-p̂)(1/n₁ + 1/n₂))
where p̂ = (x₁ + x₂)/(n₁ + n₂) is the pooled proportion.