Continuous Distributions

Continuous distributions describe outcomes that can take any value within a range — heights, weights, latencies, prices. The outcome isn't restricted to whole numbers; it can be 4.7, 4.71, 4.712, and so on.

Normal (Gaussian) Distribution

Symmetric, bell-shaped, characterized by mean mumu and standard deviation sigmasigma. The most important distribution in statistics, for two reasons:

  1. The Central Limit Theorem: The distribution of sample means approaches normal as sample size grows, regardless of the underlying distribution. This is why so many statistical tests assume normality — in the limit, it's valid even when the raw data isn't normal.
  2. Natural prevalence: Heights, measurement errors, sums of many small independent effects — these all tend toward normal in practice.

When it shows up: Test scores. Measurement error. Model residuals (when assumptions hold). Many parametric statistical tests assume normal data.

Uniform Distribution

Equal probability for all values within a specified range [a, b]. The flattest distribution — no value is more likely than any other.

When it shows up: Random number generation. A/B test bucketing. Monte Carlo simulation. Any situation where you have no reason to prefer one value over another.

Exponential Distribution

Models the time between events in a Poisson process. Single parameter: the rate lambdalambda (higher rate = shorter typical waiting time). It has the memoryless property: knowing that you've already waited 5 minutes tells you nothing about how much longer you'll wait.

When it shows up: Time between bus arrivals. Time until a customer churns. Time to component failure. Survival analysis. Any "how long until the next event?" question where events arrive at a steady rate.

Continuous Distribution Explorer

Symmetric, bell-shaped. Shifting μ moves the curve left or right; increasing σ flattens and widens it. The Central Limit Theorem guarantees that averages of large samples approach this shape.

f(x) = (1 / σ√2π) · e^(−(x−μ)² / 2σ²)

Mean (μ)0.0
-4.04.0
Std Dev (σ)1.0
0.23.0
PDF — relative likelihood (area = 1)
-8.0mean = 0.008.0
0.000
Mean (μ)
1.000
Variance (σ²)
1.000
Std Dev (σ)
0.0
Mode
PDFMean

Toggle between Normal, Uniform, and Exponential. Adjust parameters with the sliders and switch between the PDF and CDF views to see how each distribution's shape and cumulative probability change.

Checkpoint

You're predicting 'time until a user churns' for a subscription service. Users who haven't churned after 6 months don't seem meaningfully less likely to churn next month than users who just signed up. Which distribution best describes this outcome?