
Continuous-variable probabilities are expressed as areas under the curve. For truly continuous variables the probability of any single exact value is effectively zero — we always compute probabilities over intervals (for example, 15–16°C).
- The curve is centered at the mean (µ).
- The spread is governed by the standard deviation (σ).
- The total area under the curve equals 1, so areas correspond to probabilities.

- A small σ produces a tall, narrow curve: most days are close to 15°C.
- A large σ produces a wider, flatter curve: greater day-to-day variation.
| Rule | Interval around mean | Approximate probability | Example (µ = 15°C, σ = 5°C) |
|---|---|---|---|
| 68% | ±1σ | ~68% | 10°C to 20°C |
| 95% | ±2σ | ~95% | 5°C to 25°C |
| 99.7% | ±3σ | ~99.7% | 0°C to 30°C |

- ±1σ: 10°C to 20°C (about 68% of days)
- ±2σ: 5°C to 25°C (about 95% of days)
- ±3σ: 0°C to 30°C (about 99.7% of days)
- Language models: After the prompt “I love”, the model assigns probabilities across many possible next tokens. Common continuations lie near the distribution center; rare continuations are in the tails. Sampling from that distribution produces fluent text; adjusting a sampling “temperature” rescales the distribution to control diversity.
- Generative models: When generating images, models sample latent or feature values from learned distributions. Sampling near the center yields realistic results; sampling from the tails tends to produce odd or unlikely outputs.
- Anomaly detection: A normal model defines “typical” behaviour. Observations far in the tails (for example, posting 1,000 times in a day when
µ ≈ 3posts/day) are flagged as anomalies for investigation.


- Predict likely outcomes by integrating areas under the density.
- Detect unusual or risky events by measuring how far an observation lies in the tail.
- Generate realistic synthetic data by sampling from central regions of learned distributions.


Not all data are perfectly normal. Always visualise your data (histograms, Q-Q plots) and run appropriate normality checks before assuming a normal model — many real-world datasets only approximate normality or are clearly non-normal.
- Normal distribution — Wikipedia
- SciPy: scipy.stats.norm (Probability density and CDF)
- Understanding the normal distribution and the 68-95-99.7 rule — Khan Academy
- Anomaly detection overview — Towards Data Science