Tested tool guide
Tested browser tools
Checked August 16, 2026
What Probability Distribution Explorer does, with a checked example
Choose from 15 or more distribution families - normal, binomial, Poisson, exponential, chi-squared, and others - then adjust the parameters (mean and standard deviation, trials and success probability, rate, degrees of freedom) and watch the curve redraw instantly. The plot shows the probability density or mass function, with the cumulative distribution function available as a second view, so you can read probabilities such as P(X <= 1) directly. The thing people trip on: for continuous distributions the curve's height is a density, not a probability - it can exceed 1 - so probabilities come only from areas under the curve.
Worked example
A concrete input and expected output from the current implementation.
Input
Normal distribution; mean 0, standard deviation 1; read the curve at x = 1, plus the band between x = -1 and x = 1.
->
Expected output
PDF at x = 1: about 0.2420. CDF at x = 1: 0.84134, so P(X <= 1) is about 0.8413. By symmetry, CDF at x = -1 is 0.15866, and the band between -1 and 1 holds 0.84134 - 0.15866 = 0.68268, about 0.6827 of the total area - the 68% of the 68-95-99.7 rule.
For the standard normal, the CDF at x is the area under the bell curve to the left of x. Phi(1) = 0.84134, and subtracting Phi(-1) = 0.15866 gives the middle band of 0.68268, matching the 68-95-99.7 rule. The 0.2420 at x = 1 is the density, which is not itself a probability.