Learn Updated 2026-03-07 UTC

Normal Distribution Calculator — PDF, CDF, and Inverse CDF

Compute normal PDF/CDF/quantiles with GetCalcMaster’s statistics functions. Includes examples and verification tips (educational).

The normal distribution is a foundational continuous probability distribution used across statistics and science. Use this guide to compute the PDF, CDF, and inverse CDF (quantiles).

Important: This content and tool are for educational purposes only. Outputs are estimates; always cross‑verify with official sources and/or a qualified professional.

What this calculator is

The Statistics Calculator is an interactive tool inside GetCalcMaster. It’s designed to help you explore scenarios, understand formulas, and document assumptions.

Key features

  • Immediate results as you change inputs
  • Transparent assumptions and explainable outputs
  • Works well with the built‑in Notebook for saving scenarios

Formula

PDF: f(x) = (1/(σ√(2π))) · exp( −(1/2)·((x−μ)/σ)^2 )
CDF: Φ(x) = P(X ≤ x)
Quantile: x = Φ^{-1}(p)

Quick examples

  • normalpdf(0, 0, 1) # ≈ 0.398942
  • normalcdf(1.96, 0, 1) # ≈ 0.975002
  • normalinv(0.975, 0, 1) # ≈ 1.96
  • # Symmetry check for standard normal normalcdf(-1.96, 0, 1) - (1 - normalcdf(1.96, 0, 1))

Verification tips

  • PDF values are densities, not probabilities. Probabilities come from areas (CDF differences).
  • For standard normal, Φ(0)=0.5 and Φ(±1.96)≈0.975/0.025.
  • σ must be positive; if σ=0 the distribution is undefined.

Common mistakes

  • Confusing PDF with CDF (density vs probability).
  • Using σ as variance instead of standard deviation.
  • Forgetting that normalcdf returns P(X ≤ x).

How to use it (quick steps)

  1. Decide whether you need PDF, CDF, or an inverse CDF (quantile).
  2. Open the Statistics Calculator.
  3. Use normalpdf(x, μ, σ) for density, normalcdf(x, μ, σ) for probability, and normalinv(p, μ, σ) for quantiles.
  4. Sanity check with symmetry (for μ=0, σ=1) and known values (e.g., Φ(0)=0.5).
  5. Document μ, σ, and your interpretation (probability vs density).

Related tools and guides

Featured guides

Deep, human-written guides focused on accuracy, verification, and reproducible workflows.

FAQ

What does normalcdf(x, μ, σ) return?
It returns P(X ≤ x) for a normal random variable X with mean μ and standard deviation σ.
How do I compute a two-sided 95% z critical value?
Use normalinv(0.975, 0, 1) which is approximately 1.96.
What’s the difference between PDF and CDF?
PDF is the density function f(x). CDF is the accumulated probability Φ(x)=P(X ≤ x).

Tip: For reproducible work, save your inputs and reasoning in Notebook.