Skip to content

Statistical Inference

Statistical inference uses sample data to draw conclusions about a population. There are two main types: confidence intervals (estimating a parameter) and hypothesis tests (testing a claim about a parameter).

A confidence interval provides a range of plausible values for an unknown population parameter, along with a level of confidence.

Statistic±Margin of Error=(point estimate)±(critical value)×(standard error)\text{Statistic} \pm \text{Margin of Error} = (\text{point estimate}) \pm (\text{critical value}) \times (\text{standard error})

The confidence level (typically 90%, 95%, or 99%) is the long-run proportion of intervals that would capture the true parameter if the sampling process were repeated many times. It does not mean there is a 95% probability that the specific interval contains the parameter.

Conditions:

  • Random sample (or random assignment)
  • np10np \geq 10 and n(1p)10n(1-p) \geq 10 (large enough sample)
  • Population is at least 10n10n (independence / 10% condition)

p^±zp^(1p^)n\hat{p} \pm z^{*}\sqrt{\frac{\hat{p}(1-\hat{p})}{n}}

Where p^\hat{p} is the sample proportion and zz^* is the critical value (1.645 for 90%, 1.960 for 95%, 2.576 for 99%).

Conditions:

  • Random sample
  • Population distribution is approximately normal (check with normal probability plot, or n30n \geq 30 for CLT)
  • σ\sigma known: zz-interval; σ\sigma unknown: tt-interval

xˉ±tsn\bar{x} \pm t^{*} \cdot \frac{s}{\sqrt{n}}

Where tt^* is the critical value from the tt-distribution with n1n-1 degrees of freedom.

  • “We are 95% confident that the true population proportion is between 0.42 and 0.58” means that the method produces an interval that captures the true parameter 95% of the time
  • The margin of error decreases with larger sample size and lower confidence level
  • Wider intervals give more confidence but less precision

A hypothesis test evaluates whether the observed sample data provides evidence for or against a claim about a population parameter.

  1. State hypotheses: Null (H0H_0) and alternative (HaH_a)
  2. Check conditions: Determine the appropriate test
  3. Calculate the test statistic: Measure how far the observed statistic is from the null
  4. Find the p-value: Probability of obtaining a result at least as extreme as the observed, assuming H0H_0 is true
  5. Make a decision: Compare p-value to the significance level α\alpha
  6. State conclusion in context
  • H0H_0 (null hypothesis): The “status quo” — the parameter equals a specific value (e.g., p=0.5p = 0.5, μ=100\mu = 100)
  • HaH_a (alternative hypothesis): What we are trying to find evidence for (e.g., p0.5p \neq 0.5, p>0.5p > 0.5, μ<100\mu < 100)

The significance level is the threshold for deciding whether the evidence against H0H_0 is strong enough. Common values: α=0.10,0.05,0.01\alpha = 0.10, 0.05, 0.01.

The p-value is the probability of obtaining a test statistic as extreme as or more extreme than the observed value, assuming H0H_0 is true.

  • Small p-value (<α< \alpha): Strong evidence against H0H_0; reject H0H_0
  • Large p-value (α\geq \alpha): Insufficient evidence against H0H_0; fail to reject H0H_0
DecisionH0H_0 TrueH0H_0 False
Reject H0H_0Type I Error (α\alpha)Correct (Power = 1β1 - \beta)
Fail to Reject H0H_0CorrectType II Error (β\beta)
  • Type I Error: Rejecting H0H_0 when it is actually true (false positive). Probability = α\alpha
  • Type II Error: Failing to reject H0H_0 when it is actually false (false negative). Probability = β\beta
  • Power (1β1 - \beta): The probability of correctly rejecting a false H0H_0 (detecting a real effect)

Power increases with: larger sample size, larger effect size, higher α\alpha, and lower σ\sigma.

z=p^p0p0(1p0)nz = \frac{\hat{p} - p_0}{\sqrt{\frac{p_0(1-p_0)}{n}}}

Two-Sample z-Test for Difference of Proportions

Section titled “Two-Sample z-Test for Difference of Proportions”

z=(p^1p^2)0p^(1p^)(1n1+1n2)z = \frac{(\hat{p}_1 - \hat{p}_2) - 0}{\sqrt{\hat{p}(1-\hat{p})\left(\frac{1}{n_1} + \frac{1}{n_2}\right)}}

Where p^=x1+x2n1+n2\hat{p} = \frac{x_1 + x_2}{n_1 + n_2} is the pooled proportion.

t=xˉμ0s/nt = \frac{\bar{x} - \mu_0}{s / \sqrt{n}}

Degrees of freedom: df=n1df = n - 1

t=(xˉ1xˉ2)0s12n1+s22n2t = \frac{(\bar{x}_1 - \bar{x}_2) - 0}{\sqrt{\frac{s_1^2}{n_1} + \frac{s_2^2}{n_2}}}

Use conservative degrees of freedom: df=min(n11,n21)df = \min(n_1 - 1, n_2 - 1) or technology.

For matched pairs or before/after data: compute the differences d=x1x2d = x_1 - x_2 and run a one-sample t-test on the differences.

t=dˉ0sd/nt = \frac{\bar{d} - 0}{s_d / \sqrt{n}}

Tests whether observed frequencies match expected frequencies based on a specified distribution.

χ2=(OE)2E\chi^2 = \sum \frac{(O - E)^2}{E}

df=number of categories1df = \text{number of categories} - 1

Tests whether two categorical variables are independent using a two-way table.

χ2=(OE)2E\chi^2 = \sum \frac{(O - E)^2}{E}

df=(rows1)(columns1)df = (\text{rows} - 1)(\text{columns} - 1)

Expected count for each cell: E=row total×column totalgrand totalE = \frac{\text{row total} \times \text{column total}}{\text{grand total}}

Conditions: All expected counts 5\geq 5.

Tests whether the distribution of one categorical variable is the same across several populations. Same formula and conditions as the test for independence, but sampling is from separate populations rather than one population classified two ways.

H0:β1=0(no linear relationship)H_0: \beta_1 = 0 \quad \text{(no linear relationship)} Ha:β10(linear relationship exists)H_a: \beta_1 \neq 0 \quad \text{(linear relationship exists)}

t=b10SEb1t = \frac{b_1 - 0}{SE_{b_1}}

df=n2df = n - 2

  • Confusing the p-value with the probability that H0H_0 is true
  • Saying “accept H0H_0” instead of “fail to reject H0H_0
  • Forgetting to check conditions before performing inference
  • Interpreting a confidence interval as “there is a 95% probability the parameter is in this interval”
  • Using a z-test for a mean when σ\sigma is unknown (should use t-test)
  • Confusing Type I and Type II errors