A self-paced introduction to Business Statistics covering data & sampling, descriptive statistics (measures of center, spread, and shape), probability foundations (rules, independence, Bayes), discrete distributions (binomial, Poisson, hypergeometric), continuous distributions and the normal curve, sampling distributions and the Central Limit Theorem, confidence intervals, hypothesis testing (one- and two-sample), chi-square tests & ANOVA, simple & multiple regression, and forecasting, statistical process control and nonparametric methods. Includes 10 video lectures with ~3-page printable notes, 10 class exercises (100 questions), three tests (20 questions each), one 40-question final exam, and the six-workstream Northwind Analytics consulting capstone.
BUSINESS STATISTICS is the discipline of collecting, organizing, summarizing, and drawing inferences from data to support decisions in marketing, finance, operations, and management. A POPULATION is the entire set of items of interest (all Amazon Prime subscribers, every invoice this quarter); a SAMPLE is a subset actually observed. A PARAMETER is a numerical summary of the population (population mean μ, standard deviation σ, proportion p) — usually unknown; a STATISTIC is the corresponding summary computed from a sample (sample mean x̄, sample standard deviation s, sample proportion p̂). DESCRIPTIVE STATISTICS summarize and visualize the data in hand; INFERENTIAL STATISTICS use a sample to make probabilistic statements about the population. Data come in two big families: QUALITATIVE / CATEGORICAL (nominal like brand, or ordinal like Likert ratings) and QUANTITATIVE (discrete counts and continuous measurements on interval or ratio scales). Choosing the right chart and summary — bar chart and mode for nominal, histogram and mean/SD for continuous — depends entirely on this classification.
Good inference starts with a good SAMPLE. A SIMPLE RANDOM SAMPLE gives every unit in the frame the same chance of selection; SYSTEMATIC, STRATIFIED, and CLUSTER designs trade variance and cost. Nonprobability designs (convenience, voluntary-response, quota) introduce SELECTION BIAS that no statistical technique can undo. Other threats include NONRESPONSE BIAS (those who reply differ from those who don't), MEASUREMENT BIAS (leading questions, mis-calibrated scales), and SURVIVORSHIP BIAS (only surviving firms/funds appear in the dataset). The three MEASURES OF CENTER — MEAN, MEDIAN, and MODE — answer different questions: the mean uses every value and is best for symmetric data; the median is the robust middle and resists outliers and skew; the mode is the most-frequent value and is the only summary that makes sense for pure categories. When the distribution is right-skewed (income, insurance claims), mean > median > mode; when left-skewed, mean < median < mode.
Spread is measured by RANGE (max − min), the INTERQUARTILE RANGE IQR = Q3 − Q1 (robust), the VARIANCE s² = Σ(xᵢ − x̄)² / (n − 1), and the STANDARD DEVIATION s = √s². We divide by n − 1 (Bessel's correction) to get an unbiased estimator of σ². The COEFFICIENT OF VARIATION CV = s / x̄ is a unit-free relative-risk measure widely used to compare volatility across assets or products. SHAPE is described by SKEWNESS (asymmetry) and KURTOSIS (tail weight). Two rules of thumb summarize spread: the EMPIRICAL RULE says that for a roughly bell-shaped distribution about 68% / 95% / 99.7% of values lie within 1, 2, and 3 standard deviations of the mean, while CHEBYSHEV'S INEQUALITY guarantees that at least 1 − 1/k² of ANY distribution lies within k SDs of its mean (k > 1). BOXPLOTS built on the five-number summary (min, Q1, median, Q3, max) and 1.5·IQR fences flag OUTLIERS — data points that deserve investigation, not automatic deletion. Visual literacy — histogram, boxplot, scatterplot, and Pareto chart — is a core skill of a business analyst; each answers a different question about location, spread, relationship, or 80/20 prioritization.
PROBABILITY is a number between 0 and 1 that quantifies the long-run relative frequency of an event, or equivalently a rational degree of belief. The SAMPLE SPACE S is the set of all possible outcomes of an experiment; an EVENT A is a subset of S. Under the CLASSICAL definition, when outcomes are equally likely, P(A) = |A| / |S|. Under the EMPIRICAL definition, P(A) ≈ (number of times A occurs) / (number of trials) as trials grow — the LAW OF LARGE NUMBERS guarantees convergence. Under the SUBJECTIVE definition, probabilities represent coherent personal beliefs — used routinely in risk management and Bayesian forecasting. Every probability system satisfies KOLMOGOROV'S AXIOMS: (1) P(A) ≥ 0, (2) P(S) = 1, and (3) for mutually exclusive events, P(A ∪ B) = P(A) + P(B).
Two events are MUTUALLY EXCLUSIVE (disjoint) if they cannot both occur — P(A ∩ B) = 0. Two events are INDEPENDENT if the occurrence of one does not change the probability of the other — P(A | B) = P(A), equivalently P(A ∩ B) = P(A)·P(B). Do NOT confuse the two: disjoint events with positive probability are DEPENDENT because if one occurs the other cannot. The ADDITION RULE gives P(A ∪ B) = P(A) + P(B) − P(A ∩ B); the COMPLEMENT RULE gives P(Aᶜ) = 1 − P(A); and the GENERAL MULTIPLICATION RULE gives P(A ∩ B) = P(A) · P(B | A). CONDITIONAL PROBABILITY P(A | B) = P(A ∩ B) / P(B) formalizes 'the probability of A given that B occurred' and is the workhorse of medical testing, credit scoring, and quality control.
BAYES' THEOREM inverts a conditional probability: P(A | B) = P(B | A) · P(A) / P(B), where P(B) is expanded via the LAW OF TOTAL PROBABILITY across a partition of the sample space. Bayesian reasoning is essential when the base rate is low — a test that is 99% sensitive and 99% specific for a disease with 1% prevalence still yields a POSITIVE PREDICTIVE VALUE of only about 50%, a result that surprises most people and shows why 'the answer is the base rate' in many false-alarm problems. COUNTING RULES turn combinatorial questions into probabilities: the fundamental counting principle (multiply choices), PERMUTATIONS nPr = n! / (n − r)! (order matters), and COMBINATIONS nCr = n! / [r!(n − r)!] (order does not matter). Business examples include lottery odds, portfolio construction, quality-control acceptance sampling, and A/B test allocation. Every applied probability problem should be attacked by (1) defining the sample space, (2) writing down what is given, (3) picking the right rule (addition, multiplication, complement, conditional, Bayes), and (4) sanity-checking the answer against a simulation or a limiting case.
A RANDOM VARIABLE X is a function that maps each outcome of a random experiment to a real number. DISCRETE random variables take countable values (number of defective units, calls per hour); CONTINUOUS random variables can take any value in an interval (time, weight, return). For a discrete X, the PROBABILITY MASS FUNCTION (PMF) p(x) = P(X = x) satisfies p(x) ≥ 0 and Σ p(x) = 1. The EXPECTED VALUE (mean) is E(X) = μ = Σ x·p(x); the VARIANCE is Var(X) = σ² = Σ (x − μ)²·p(x) = E(X²) − μ². Expectation is LINEAR: E(aX + b) = a·E(X) + b, and for independent X, Y, Var(X + Y) = Var(X) + Var(Y). These properties underpin portfolio math, decision analysis, and expected-value calculations in insurance and pricing.
The BINOMIAL DISTRIBUTION models the number of successes in n INDEPENDENT trials, each with the same success probability p. Its PMF is P(X = k) = C(n, k) · pᵏ · (1 − p)ⁿ⁻ᵏ, with mean μ = np and variance σ² = np(1 − p). Assumptions are the 'BINS' check: Binary trials, Independent trials, fixed Number of trials, and constant Success probability. Business uses include quality inspection (defective rate), telemarketing conversions, and A/B click-through modeling. The HYPERGEOMETRIC DISTRIBUTION is the finite-population analogue used when sampling WITHOUT replacement from a small population — appropriate for audit sampling and lot-acceptance testing. When the sample size is less than about 5% of the population, the binomial closely approximates the hypergeometric.
The POISSON DISTRIBUTION models the number of independent occurrences in a fixed interval of time, area, or volume when the mean rate λ is known and events do not occur simultaneously. Its PMF is P(X = k) = λᵏ e⁻ᴧ / k!, with mean = variance = λ — a distinctive fingerprint. Poisson models arrivals at a bank, defects per square meter of fabric, insurance claims per day, and website hits per minute. When n is large and p is small, the binomial with mean np is well approximated by a Poisson with λ = np (rule of thumb: n ≥ 30 and np ≤ 5). Choosing between distributions is a matter of MECHANISM: fixed n and success/failure trials → binomial; finite population without replacement → hypergeometric; counts of rare events in a continuous interval → Poisson; time between such events → exponential (Module 4). In every case, verify the assumptions before applying the formulas and always report both the point estimate and its variability.
For a continuous random variable, the PROBABILITY DENSITY FUNCTION (PDF) f(x) is nonnegative and integrates to 1 over its support; the probability of a value in [a, b] is the AREA under f between a and b. The probability of any single exact value is zero — a subtle point that trips new students. The CUMULATIVE DISTRIBUTION FUNCTION (CDF) F(x) = P(X ≤ x) is the workhorse: probabilities of intervals are differences of CDF values. The UNIFORM DISTRIBUTION on [a, b] has constant density 1 / (b − a), mean (a + b) / 2, and variance (b − a)² / 12; it models complete ignorance within a range. The EXPONENTIAL DISTRIBUTION with rate λ has density λe⁻ᴧˣ, mean 1/λ, and the MEMORYLESS property P(X > s + t | X > s) = P(X > t) — perfect for time-between-events (machine failures, call arrivals) when the underlying counts are Poisson.
The NORMAL DISTRIBUTION N(μ, σ²) — the bell curve — is the most important continuous distribution in applied statistics. Its density is symmetric about the mean μ, characterized entirely by (μ, σ), and satisfies the EMPIRICAL RULE (68/95/99.7). A crucial property: any linear combination of independent normal random variables is itself normal, which is why aggregate returns, measurement errors, and CENTRAL-LIMIT-THEOREM sampling distributions are approximately normal. The STANDARD NORMAL Z = (X − μ) / σ has mean 0 and SD 1; STANDARDIZATION converts any normal problem into a lookup on the Z table (or =NORM.S.DIST in Excel). Z-SCORES are also unit-free measures of how many SDs a value lies from its mean — a Z of +2 means 'two SDs above average' regardless of what the raw units are.
Every normal-distribution problem has one of three shapes: (1) find a PROBABILITY given a value — standardize and read a Z table; (2) find a VALUE given a probability — read the Z table backward and unstandardize with X = μ + Zσ; (3) find a percentile or an interval covering a target probability. INVERSE-normal problems are the foundation of Value-at-Risk, statistical control limits, and prediction intervals. Continuous distributions extend naturally beyond the normal: the LOG-NORMAL models stock prices; the WEIBULL models component life and reliability; the BETA models proportions and Bayesian priors. In every case the drill is the same — identify the distribution from the mechanism, extract the parameters, and translate the business question into an area, a value, or a quantile. Software (Excel, R, Python's SciPy) has made table lookups obsolete for professionals, but understanding the standardization step remains essential for interpretation.
A SAMPLING DISTRIBUTION is the probability distribution of a SAMPLE STATISTIC — for example, the distribution of the sample mean x̄ across all possible samples of size n drawn from the same population. This is the conceptual pivot from descriptive to inferential statistics: our data give us one x̄, but statistical inference asks what the whole distribution of x̄'s would look like if we could repeatedly resample. Two facts anchor everything: (1) the sampling distribution of x̄ has MEAN equal to the population mean μ — x̄ is an UNBIASED ESTIMATOR of μ — and (2) its STANDARD DEVIATION, called the STANDARD ERROR, equals σ / √n (or s / √n in practice). The √n in the denominator is the reason larger samples give more precise estimates and why quadrupling the sample size only halves the standard error.
The CENTRAL LIMIT THEOREM (CLT) is the workhorse of applied statistics: for any population with finite mean μ and finite variance σ², the sampling distribution of x̄ approaches a NORMAL distribution N(μ, σ²/n) as n grows. The rule of thumb is n ≥ 30 for reasonably behaved populations; heavily skewed populations need larger n. The CLT is what lets us build confidence intervals and run hypothesis tests using z- and t-distributions even when the underlying data are not normal. Software simulations (draw many samples from an exponential population, plot the histogram of x̄, watch it become normal) are the best way to internalize the CLT; a good analyst can also explain WHY the result is intuitive — averaging washes out idiosyncratic variation.
For SAMPLE PROPORTIONS the parallel result holds: if X ~ Binomial(n, p) and we compute p̂ = X / n, then p̂ has mean p and standard error √[p(1 − p) / n], and by the CLT is approximately normal when np ≥ 10 AND n(1 − p) ≥ 10 (both success and failure counts must be at least 10). This underpins polling, click-through rate estimation, and quality control. The FINITE POPULATION CORRECTION FACTOR √[(N − n) / (N − 1)] shrinks the standard error when the sample is a large fraction of the population; it is usually ignored when n / N ≤ 5%. Two additional building blocks recur throughout inference: the STUDENT t DISTRIBUTION (used in place of z when σ is unknown and estimated by s; heavier tails than the normal, indexed by df = n − 1), and the CHI-SQUARE distribution (used for sample variances and count-data tests). Master these sampling distributions and the entire inference toolkit — CIs, hypothesis tests, ANOVA, regression standard errors — becomes a sequence of variations on a theme.
A CONFIDENCE INTERVAL (CI) is a range of plausible values for a population parameter, together with a CONFIDENCE LEVEL that describes the reliability of the procedure that produced it. The general form is POINT ESTIMATE ± MARGIN OF ERROR, where the margin of error is the CRITICAL VALUE from a sampling distribution times the STANDARD ERROR. For a population mean with known σ (rare), the (1 − α) CI is x̄ ± z(α/2) · σ / √n; when σ is unknown (the norm) we use x̄ ± t(α/2, n − 1) · s / √n. For a population proportion, the CI is p̂ ± z(α/2) · √[p̂(1 − p̂) / n] provided np̂ ≥ 10 and n(1 − p̂) ≥ 10. A 95% CI means that 95% of intervals produced by this procedure would contain the true parameter — NOT that there is a 95% probability the true parameter lies in this particular interval (a common misinterpretation).
The MARGIN OF ERROR (ME) drives sample-size planning. For a mean, n = (z σ / ME)²; for a proportion, n = (z / ME)² · p(1 − p). When p is unknown, use the conservative p = 0.5 that maximizes p(1 − p) at 0.25. Cutting the ME in half requires quadrupling n — the same √n cost that governed the standard error. Real polling designs report a ME (often ±3%) and a confidence level (often 95%); these two numbers imply the sample size and any headline change smaller than the ME is not statistically distinguishable from noise. Analysts choose confidence levels based on the cost of the wrong decision; 90% is common for exploratory work, 95% for standard reporting, and 99% or higher for medical, financial, or safety-critical applications.
CIs come in flavors for many parameters: two means (independent or paired), two proportions, a variance (chi-square distribution), a ratio of variances (F distribution), and a regression slope (Module 9). For paired data (before/after), always work with the DIFFERENCE d = x₂ − x₁ and compute a one-sample CI on the mean difference; this exploits pairing to remove between-subject variance. WIDTH depends on (1) confidence level (higher → wider), (2) sample size (larger → narrower), (3) variability (larger σ → wider), and (4) design efficiency (paired > independent when pairs are correlated). Reporting a CI is almost always more informative than reporting a p-value alone because it communicates both the direction and the magnitude of an effect, along with its precision. Every serious business report should quote effect sizes with 95% CIs; press releases that only quote a point estimate should be treated with skepticism.
HYPOTHESIS TESTING is a formal procedure for deciding between two competing claims about a population parameter given a sample. The NULL HYPOTHESIS H₀ states the default (no effect, no difference, μ = μ₀), and the ALTERNATIVE HYPOTHESIS H₁ (or Hₐ) states the research claim (μ ≠ μ₀ two-sided, or μ > μ₀ / μ < μ₀ one-sided). We compute a TEST STATISTIC — for example z = (x̄ − μ₀) / (σ / √n) or t = (x̄ − μ₀) / (s / √n) — measuring how many standard errors the observed statistic is from the null value. The P-VALUE is the probability of observing a test statistic at least as extreme as the one obtained, ASSUMING H₀ IS TRUE. If p ≤ α (typically 0.05), reject H₀; otherwise fail to reject. Failing to reject is NOT the same as proving H₀ true — it means the evidence is insufficient to reject.
Two error types govern testing. A TYPE I ERROR rejects a true H₀; its probability is α, the SIGNIFICANCE LEVEL, which we choose in advance. A TYPE II ERROR fails to reject a false H₀; its probability is β. The POWER of a test is 1 − β, the probability of detecting a real effect. Power rises with (1) larger effect size, (2) larger sample size, (3) smaller variability, and (4) larger α (at the cost of more false positives). Every good study includes a POWER ANALYSIS at the design stage — a study underpowered to detect a business-relevant effect will produce ambiguous null results and waste money. STATISTICAL SIGNIFICANCE (small p-value) is not the same as PRACTICAL SIGNIFICANCE (business-relevant effect size); huge n can make trivial differences 'significant', while small n can hide important effects.
The one-sample framework generalizes cleanly. For TWO INDEPENDENT SAMPLES comparing means, the test statistic is (x̄₁ − x̄₂) / SE, where SE uses a POOLED variance if variances are equal or WELCH'S formula if unequal; the df comes from the Welch-Satterthwaite approximation. For PAIRED samples, form differences dᵢ = x₂ᵢ − x₁ᵢ and run a one-sample t-test on the d's. For TWO PROPORTIONS, use z = (p̂₁ − p̂₂) / SE with a POOLED p̂ under H₀ that the two proportions are equal. Regardless of the flavor, every hypothesis test follows the same six-step recipe: (1) state H₀ and H₁; (2) choose α; (3) select the correct test and check its assumptions; (4) compute the test statistic; (5) find the p-value or compare to the critical value; (6) state a business conclusion in plain English. Analysts must resist p-HACKING (multiple untracked tests until something 'works'), HARKing (Hypothesizing After the Results are Known), and dichotomania (treating p = 0.049 as fundamentally different from p = 0.051). Report effect sizes with confidence intervals, pre-register hypotheses when possible, and treat p-values as one piece of evidence among many.
The CHI-SQUARE (χ²) family of tests handles CATEGORICAL data. The GOODNESS-OF-FIT test asks whether observed frequencies in k categories match a specified distribution: χ² = Σ (O − E)² / E, with df = k − 1 (or k − 1 − p if p parameters were estimated from the data). The TEST OF INDEPENDENCE (or homogeneity) uses an r × c contingency table to ask whether two categorical variables are independent; expected frequencies are Eᵢⱼ = (row total × column total) / grand total, and df = (r − 1)(c − 1). Both tests require all Eᵢⱼ ≥ 5 (rule of thumb); when this fails, combine categories or use FISHER'S EXACT TEST. Chi-square analyses power A/B testing on categorical outcomes, survey cross-tabs, market-basket independence, and demographic-mix comparisons.
ANALYSIS OF VARIANCE (ANOVA) generalizes the two-sample t-test to THREE OR MORE means. ONE-WAY ANOVA partitions total variability into BETWEEN-GROUP variability (differences among group means) and WITHIN-GROUP variability (random noise). The F STATISTIC is the ratio of the mean square between (MSB) to the mean square within (MSW): F = MSB / MSW with df1 = k − 1 and df2 = N − k. Under H₀ (all population means equal), F ~ F(df1, df2); large F values are evidence against equality. ASSUMPTIONS: independent observations, approximately normal residuals in each group, and roughly equal variances (LEVENE'S TEST checks this). Rejecting H₀ tells us SOMETHING differs but not WHICH means differ, so we follow up with MULTIPLE COMPARISONS such as TUKEY'S HSD, BONFERRONI, or SCHEFFÉ — each controls the family-wise error rate at α by widening individual CIs.
TWO-WAY ANOVA extends the framework to two categorical factors and their INTERACTION, essential for factorial experiments (e.g., price × advertising channel). BLOCKING and RANDOMIZED BLOCK DESIGN reduce noise by pairing similar experimental units — a direct generalization of paired-sample t-tests. Repeated measures ANOVA handles the same subjects across multiple conditions. When ANOVA assumptions fail badly, use nonparametric alternatives: the KRUSKAL-WALLIS test replaces one-way ANOVA, and the FRIEDMAN test replaces repeated measures. In all cases, report the F statistic, df, p-value, effect size (η² or ω²), and follow up with pairwise comparisons plus a clear business narrative. A statistically significant F with a trivial η² tells us little; a large effect that just misses the 5% cutoff still deserves discussion. Chi-square and ANOVA together cover the vast majority of categorical and multi-group business analyses, from marketing mix experiments to operations SPC.
SIMPLE LINEAR REGRESSION models the mean of a response Y as a linear function of a predictor X: Y = β₀ + β₁ X + ε, where ε ~ N(0, σ²) independently across observations. ORDINARY LEAST SQUARES (OLS) chooses b₀ and b₁ to minimize the SUM OF SQUARED RESIDUALS Σ(yᵢ − ŷᵢ)². Closed-form solutions give b₁ = Σ(xᵢ − x̄)(yᵢ − ȳ) / Σ(xᵢ − x̄)² and b₀ = ȳ − b₁ x̄. The COEFFICIENT OF DETERMINATION R² is the proportion of Y's variance explained by X; it ranges from 0 to 1 and equals the square of the correlation coefficient r. INTERPRETATION: b₁ is the estimated change in E(Y) for a one-unit increase in X, holding all else equal; b₀ is the mean of Y when X = 0 (often not meaningful if 0 is outside the data range).
INFERENCE ON REGRESSION COEFFICIENTS uses the t-distribution: t = bⱼ / SE(bⱼ) with df = n − p − 1, where p is the number of predictors. A significant slope means there is evidence that X has a linear association with Y after accounting for sampling variability. PREDICTION intervals for a new observation are wider than CONFIDENCE intervals for the mean response at a given X because they add σ² to the standard error. The five GAUSS-MARKOV / OLS assumptions are LINEARITY, INDEPENDENCE of errors, homoscedasticity (equal variance of ε), NORMALITY of ε, and no perfect MULTICOLLINEARITY. Residual plots — residuals vs fitted, Q-Q plot, residuals vs each predictor — are the front-line diagnostic; violations lead to LOG or POWER transformations, WEIGHTED LEAST SQUARES, or ROBUST regression.
MULTIPLE REGRESSION extends the model to k predictors: Y = β₀ + β₁X₁ + … + βₖXₖ + ε. Each βⱼ is the mean change in Y per unit change in Xⱼ, HOLDING ALL OTHER PREDICTORS CONSTANT — this ceteris paribus interpretation is the reason regression is central to controlled observational analysis. ADJUSTED R² penalizes R² for adding predictors that don't earn their keep; the F TEST on the full model tests whether ANY predictor is useful. MULTICOLLINEARITY inflates standard errors and destabilizes coefficient estimates; diagnose it with the VARIANCE INFLATION FACTOR VIF > 5 (or > 10) and remedy it by dropping or combining predictors or by using RIDGE or LASSO regression. Categorical predictors enter via DUMMY VARIABLES (k − 1 dummies for k levels); INTERACTIONS (X₁ · X₂) let the effect of one predictor depend on another. Watch for OUTLIERS via studentized residuals, HIGH-LEVERAGE points via hat values, and INFLUENTIAL points via Cook's distance. A working analyst uses regression not as a formula but as a modeling framework: build a model, check its assumptions, interpret coefficients in business terms, and validate on hold-out data before promoting decisions.
TIME SERIES DATA are observations recorded at successive time points (daily sales, quarterly GDP, hourly click-throughs). Classical decomposition breaks a series into TREND, SEASONALITY, CYCLE, and IRREGULAR components; forecasting methods differ by which components they capture. NAIVE forecasts use the last observation; MOVING AVERAGES smooth by averaging the last k periods; WEIGHTED MOVING AVERAGES place more weight on recent data. EXPONENTIAL SMOOTHING extends this with a decay parameter α: F(t+1) = α · Y(t) + (1 − α) · F(t). HOLT'S METHOD adds a trend component; HOLT-WINTERS adds seasonality — foundational algorithms for demand planning and inventory management. Forecast quality is measured by MAE (mean absolute error), MSE (mean squared error), MAPE (mean absolute percent error), and RMSE — no single measure is best; select based on business cost structure.
STATISTICAL PROCESS CONTROL (SPC) applies inference to manufacturing and service processes. A CONTROL CHART plots a statistic (mean, range, proportion defective) over time with a CENTER LINE and UPPER/LOWER CONTROL LIMITS at ±3σ. Points outside the limits, or patterns such as seven consecutive points on one side of the center line, signal an ASSIGNABLE CAUSE of variation to investigate. The main chart types are X̄ and R charts for variables data, p and np charts for proportion defective, and c and u charts for defects per unit. A process is IN CONTROL when only COMMON CAUSE variation is present; it is CAPABLE (Cp, Cpk ≥ 1.33 traditionally) when it not only is stable but also fits comfortably within specification limits. SPC is a required tool set for Six Sigma green- and black-belt certification and for ISO 9001 quality systems.
NONPARAMETRIC METHODS relax the normality and interval-scale assumptions of z-, t-, and F-based tests. The SIGN TEST and WILCOXON SIGNED-RANK test replace the paired t-test; the MANN-WHITNEY U replaces the two-sample t-test; the KRUSKAL-WALLIS test replaces one-way ANOVA; SPEARMAN'S rank correlation replaces Pearson's r when the relationship is monotonic but not linear or when the data are ordinal. These tests trade a little statistical power (when parametric assumptions genuinely hold) for robustness to outliers, skew, and ordinal data — invaluable for customer-satisfaction ratings, ranked preferences, and small samples with obvious non-normality. Every professional analyst also owns a modern toolkit: BOOTSTRAP RESAMPLING to build empirical CIs for any statistic; PERMUTATION TESTS for exact p-values; and BAYESIAN methods to combine data with prior information. Business statistics ends where DATA SCIENCE and MACHINE LEARNING begin — the same statistical thinking (uncertainty, sampling, inference, model validation) generalizes to regression trees, gradient boosting, and neural networks, but the core habits — draw the picture, check the assumptions, quantify uncertainty, and translate to a business decision — remain unchanged from Fisher and Deming to today.
You are a Business Analyst at Northwind Analytics, a boutique consultancy. A mid-sized specialty coffee retailer, Riverbend Roasters (72 stores across 4 regions, ~$180M annual revenue), has engaged you for a six-workstream analytics review. You will apply the full STAT 2500 toolkit — descriptive statistics, probability, sampling, confidence intervals, hypothesis testing, ANOVA, regression, forecasting, and quality control — to real decisions on the CEO's desk this quarter. Deliverable: a single client-ready PDF report plus a spreadsheet appendix.
The CEO has six live decisions: (1) profile customer basket sizes and identify segments; (2) A/B test a new mobile-app checkout flow with a 4% baseline conversion; (3) benchmark store-level sales across four regions; (4) build a regression model of monthly revenue as a function of foot traffic, price index, promotions, and weather; (5) build a 12-month sales forecast for the flagship region; and (6) design an SPC program to monitor drink-preparation time and defect rates. State all assumptions clearly and produce boardroom-ready findings.
| Criterion | Weight |
|---|---|
| Segmentation report — descriptive rigor & visualization | 15% |
| A/B test — power, execution, and business recommendation | 17% |
| ANOVA — correct model, post-hoc, and interpretation | 16% |
| Regression — model quality, diagnostics, and actionability | 20% |
| Forecast — model choice, accuracy metrics, prediction intervals | 16% |
| SPC — chart design, rules, and Cp/Cpk analysis | 16% |