By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
A hypothesis is a testable statement that predicts a relationship between variables. In business, science, and data analysis, you use hypotheses to make decisions based on evidence rather than guesswork.
Why use it today?Hypotheses help you validate assumptions, reduce risk, and make data-driven decisions—whether testing a new product feature, optimizing marketing spend, or improving operational efficiency.
Without hypotheses, you’re guessing. With them, you’re learning.
"Does a free shipping offer increase conversion rates?"
Formulate Hypotheses
H₁: Free shipping increases conversion.
Design the Experiment
Ensure randomization to avoid bias.
Collect Data
Track conversion rates for both groups over time.
Analyze Results
Check effect size (e.g., +4% conversion).
Draw Conclusions
If p ≥ 0.05 → no evidence to support the change.
Iterate
import numpy as np from scipy import stats # Simulate data: 1000 users in control (no free shipping) vs. treatment (free shipping) control_conversions = np.random.binomial(1000, 0.15) # 15% conversion treatment_conversions = np.random.binomial(1000, 0.18) # 18% conversion # Two-proportion z-test successes = [treatment_conversions, control_conversions] trials = [1000, 1000] z_stat, p_value = stats.proportions_ztest(successes, trials) print(f"p-value: {p_value:.4f}") if p_value < 0.05: print("Reject H₀: Free shipping increases conversions.") else: print("Fail to reject H₀: No significant effect.")
Expected Outcome:- If p < 0.05, you have evidence that free shipping works.- If p ≥ 0.05, the result is inconclusive (try a larger sample size).
Hypothesis: "Reducing checkout steps from 3 to 2 will increase conversions by 5%." Test Type: A/B test Sample Size: 10,000 users per group Duration: 2 weeks Result: +3% conversion (p = 0.02) Decision: Implement change
A company tests whether a new email subject line increases open rates. The p-value is 0.03. What does this mean?
A) The new subject line definitely increases open rates.B) There’s a 3% chance the new subject line has no effect.C) There’s a 3% probability the observed difference is due to random chance.D) The test is inconclusive because p > 0.01.
Correct Answer: CExplanation: A p-value of 0.03 means there’s a 3% chance the observed difference (or a more extreme one) would occur if H₀ were true. We reject H₀ at the 5% significance level.Why the Distractors Are Tempting:- A: Overstates certainty—p-values don’t "prove" anything.- B: Misinterprets p-value as the probability H₀ is true.- D: Incorrect threshold—0.05 is the standard cutoff, not 0.01.
You run an A/B test and get a p-value of 0.15. The effect size is +10% revenue. What should you do?
A) Reject H₀ and implement the change—10% is a big improvement.B) Fail to reject H₀, but run the test longer to see if p drops below 0.05.C) Conclude the change has no effect and abandon it.D) Increase the sample size and retest.
Correct Answer: DExplanation: A p-value of 0.15 is not statistically significant, but a +10% effect size is practically meaningful. The issue is likely low statistical power (small sample size). Retest with more data.Why the Distractors Are Tempting:- A: Ignores statistical significance—effect size alone isn’t enough.- B: "Peeking" at results and extending the test can inflate false positives.- C: Fails to consider that the effect might be real but the test was underpowered.
Which of these is a Type II error?
A) Concluding a new drug works when it doesn’t.B) Missing a real effect because your sample size was too small.C) Rejecting H₀ when it’s true.D) Getting a p-value of 0.04 and declaring the result significant.
Correct Answer: BExplanation: A Type II error is failing to reject H₀ when it’s false (missing a real effect). This often happens with small sample sizes.Why the Distractors Are Tempting:- A: Describes a Type I error (false positive).- C: Also describes a Type I error.- D: Correctly rejects H₀ but doesn’t address Type II errors.
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.