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).
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.398942normalcdf(1.96, 0, 1) # ≈ 0.975002normalinv(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)
- Decide whether you need PDF, CDF, or an inverse CDF (quantile).
- Open the Statistics Calculator.
- Use normalpdf(x, μ, σ) for density, normalcdf(x, μ, σ) for probability, and normalinv(p, μ, σ) for quantiles.
- Sanity check with symmetry (for μ=0, σ=1) and known values (e.g., Φ(0)=0.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?
How do I compute a two-sided 95% z critical value?
What’s the difference between PDF and CDF?
Tip: For reproducible work, save your inputs and reasoning in Notebook.