- Mean formula and its weakness
- x̄ = Σxᵢ/n. Weakness: sensitive to outliers and skew — one extreme value can drag it far from typical values.
- When is the median better than the mean?
- When the distribution is skewed or has outliers (e.g., incomes, house prices). Median resists extreme values.
- Mean vs median in a right-skewed distribution
- Mean > median (the long right tail pulls the mean upward). Left-skewed: mean < median. Symmetric: mean ≈ median.
- Sample standard deviation formula (and denominator)
- s = √( Σ(xᵢ − x̄)² / (n − 1) ). Divide by n − 1 when the data are a SAMPLE; divide by N only when the data ARE the whole population.
- Data: 2,4,4,4,5,5,7,9 — SS, σ, and s?
- Mean = 5; sum of squared deviations SS = 32. As population: σ² = 32/8 = 4 → σ = 2. As sample: s² = 32/7 ≈ 4.571 → s ≈ 2.138.
- IQR definition and outlier fences
- IQR = Q3 − Q1 (spread of middle 50%). Outliers: below Q1 − 1.5·IQR or above Q3 + 1.5·IQR.
- Effect of adding a constant c to every value
- Mean and median shift by +c; spread measures (sd, IQR, range) unchanged. Multiplying by c: mean ×c, sd ×|c|.
- Chebyshev's rule (any distribution)
- At least 1 − 1/k² of data within k standard deviations: ≥75% within 2σ, ≥89% within 3σ, ≥95% within 4.5σ. Works for ANY shape.
- Empirical rule (68–95–99.7) and its condition
- For bell-shaped symmetric (near-normal) data only: ≈68% within 1σ, ≈95% within 2σ, ≈99.7% within 3σ. Do NOT use on skewed data.
- Which graph for the shape of one continuous variable?
- Histogram (or stem-and-leaf). Read: shape, center, spread, outliers, modes. Boxplot hides bimodality.
- Simple random sample (SRS) definition
- Every set of n individuals in the population has an equal chance of being the sample.
- Stratified vs cluster sampling
- Stratified: split into known strata, SRS WITHIN each (more precision). Cluster: randomly pick whole groups and measure everyone (cheaper, less precise per n).
- Name 4 nonsampling biases
- Selection/undercoverage, nonresponse, voluntary response, wording/response bias. Bigger n does NOT fix these.
- When can you conclude causation?
- Only from a randomized controlled experiment. Observational studies show association; confounders may explain it.
- Purpose of placebo + blinding
- Placebo controls the placebo effect (improvement from expectation). Blinding keeps subjects (and in double-blinding, experimenters) from letting expectations bias results.
- What is a confounding (lurking) variable?
- A variable associated with both the explanatory and response variables that fakes or masks the observed relationship (ice-cream sales and drownings ← hot weather).
- General addition rule
- P(A ∪ B) = P(A) + P(B) − P(A ∩ B). If mutually exclusive, the overlap is 0.
- General multiplication rule
- P(A ∩ B) = P(A) · P(B|A). If independent: P(A ∩ B) = P(A)·P(B).
- Independent vs mutually exclusive — same thing?
- NO. Independent: one happening doesn't change the other's probability. Mutually exclusive: they can't co-occur — which makes them dependent (if one happens, the other's probability drops to 0).
- P(at least one success in n tries, per-try p)
- 1 − (1−p)ⁿ. Example: 4 shots at 70% → 1 − 0.3⁴ = 0.9919.
- Bayes' rule
- P(A|B) = P(B|A)·P(A)/P(B) — converts P(cause→evidence) into P(evidence→cause).
- Test: prevalence 1%, sensitivity 99%, specificity 95%. P(disease | positive)?
- ≈16.7%: (0.99·0.01)/(0.99·0.01 + 0.05·0.99). Rare conditions make most positives false positives.
- Permutation vs combination
- Order matters → permutation nPk = n!/(n−k)! (5P3 = 60). Order doesn't → combination nCk = n!/(k!(n−k)!) (5C3 = 10).
- Properties of the normal curve N(μ, σ)
- Continuous, bell-shaped, symmetric about μ (mean = median = mode), area = 1, σ controls width. Infinitely many normals parameterized by (μ, σ).
- z-score formula and meaning
- z = (x − μ)/σ — how many standard deviations x is above (+) or below (−) the mean. Reverse: x = μ + zσ.
- X ~ N(64, 3): z for x = 70.4? And x for z = −1.5?
- z = (70.4−64)/3 ≈ +2.13 (only ≈1.7% higher). x = 64 + (−1.5)(3) = 59.5.
- The 4 conditions of a binomial setting
- 1) fixed n trials; 2) success/failure each trial; 3) constant p; 4) independent trials.
- Binomial PMF, mean, sd
- P(X=k) = C(n,k)pᵏ(1−p)ⁿ⁻ᵏ; mean np; sd √(np(1−p)). Example n=100, p=0.2 → mean 20, sd 4.
- When can you approximate binomial with normal?
- When np ≥ 10 AND n(1−p) ≥ 10. Then X ≈ N(np, √(np(1−p))); use continuity correction (±0.5) for accuracy.
- SE of the sample mean and of the sample sum
- SE(x̄) = σ/√n; SE(sum) = σ√n. Square root law: ×n data → error ×√n (halve the error ⇒ quadruple n).
- SE of a sample proportion
- SE(p̂) = √(p(1−p)/n). Example p=0.5, n=100 → SE = 0.05.
- What the Central Limit Theorem actually says
- For large n, the sampling distribution of x̄ is approximately N(μ, σ/√n) — regardless of the population's shape. It says nothing about the population becoming normal.
- Law of Large Numbers vs CLT
- LLN: x̄ converges to μ as n grows (accuracy). CLT: the SHAPE of x̄'s distribution becomes normal (basis of inference).
- What does r measure, and 3 cautions
- Strength/direction of LINEAR association (−1..+1). Cautions: r=0 doesn't mean no relation (curves!); outliers distort r; correlation ≠ causation.
- Least-squares slope and intercept formulas
- b = r·(s_y/s_x); a = ȳ − b·x̄. The line always passes through (x̄, ȳ).
- What is r²?
- The fraction of y's variance explained by the linear model. r = 0.77 → r² ≈ 0.60 → 60% of variation explained.
- Funnel-shaped residual plot indicates what?
- Heteroscedasticity (spread changes with x) — try transforming y (e.g., log). Curved residuals → wrong functional form (try quadratic).
- Regression to the mean / regression fallacy
- Extreme values are followed by more typical ones for statistical reasons — don't invent a causal explanation (praise/punishment after extreme performances).
- CI master template
- estimate ± (critical value) × (standard error). Mean: x̄ ± z*σ/√n (or t* with df n−1). Proportion: p̂ ± z*√(p̂(1−p̂)/n).
- Correct meaning of '95% confident'
- The METHOD captures the true parameter in ~95% of repeated samples. NOT '95% probability μ is in this interval' (μ is fixed).
- Sample size formula for margin of error E
- n = (z*·σ/E)², round UP. Example: σ=15, E=3, 95% → (1.96·15/3)² ≈ 96.04 → n = 97.
- Percentile bootstrap CI in 4 steps
- 1) resample data with replacement, size n; 2) compute statistic; 3) repeat ~10,000×; 4) take 2.5th/97.5th percentiles → 95% CI. sd of bootstrap stats ≈ SE.
- Define the p-value precisely
- The probability, ASSUMING H₀ is true, of results this extreme or more extreme. It is NOT P(H₀ true | data).
- t-test statistic and df
- t = (x̄ − μ₀)/(s/√n), df = n − 1. Use when σ is unknown (the usual case). Fatter tails than z.
- Type I vs Type II error, and power
- Type I = rejecting a true H₀ (rate α). Type II = failing to reject a false H₀ (rate β). Power = 1 − β = chance of detecting a real effect (grows with n and effect size).
- Matched pairs — which test?
- Take the DIFFERENCES within pairs and run a ONE-sample t-test on them (not a two-sample test).
- Why does the bootstrap work?
- Plug-in principle: the sample's empirical distribution is the best available stand-in for the population; resampling from it mimics drawing new samples. Limits: can't fix bias, tiny or non-representative samples.
- χ² statistic, expected counts, and the 3 tests
- χ² = Σ(O−E)²/E; E = row total × column total / grand total; require all E ≥ 5. Goodness of fit (df = k−1), homogeneity & independence (df = (r−1)(c−1)).
- ANOVA F-ratio and its logic
- F = MSB/MSW = [SSB/(k−1)]/[SSW/(N−k)] — between-group variation vs within-group noise. Large F → at least one mean differs. H₀: all μ equal.
- Why do false positives explode with many tests?
- P(≥1 false positive) = 1 − 0.95ᵐ → at m=40 tests ≈ 87%. Fixes: Bonferroni (α/m), FDR (Benjamini–Hochberg), data splitting, pre-registration.