Normal CDF Calculator
Find left-tail, right-tail, or between-range probabilities for a normal distribution using mean and standard deviation.
How to do cumulative distribution function on calculator
If you are trying to compute probability from a distribution curve, you are looking for the cumulative distribution function (CDF). In plain language, the CDF tells you the probability that a random variable is less than or equal to a value.
For example, if exam scores are normally distributed, you can use a calculator to find the chance a student scores below 82, above 90, or between 70 and 85.
For a normal distribution, calculators evaluate this area using numerical methods, so you do not have to integrate by hand.
What “cumulative” means
The word cumulative means “adding up from the left.” So for a continuous distribution:
- Left-tail CDF: area from negative infinity to x
- Right-tail probability: area from x to positive infinity (usually 1 − CDF)
- Between probability: CDF(b) − CDF(a)
That is exactly what the calculator tool above automates.
Common calculator commands by type
TI-83 / TI-84
- normalcdf(lower, upper, μ, σ) for normal probabilities
- binomcdf(n, p, x) for binomial cumulative probabilities
- poissoncdf(λ, x) for Poisson cumulative probabilities
Tip: use very large negative or positive numbers (like -1E99 and 1E99) to represent infinity bounds in normalcdf.
Casio fx-991EX / ClassWiz
Go to Distribution mode, choose Normal CD, and enter lower bound, upper bound, mean, and standard deviation. The calculator returns the area directly.
Scientific calculators without built-in distribution menus
Use z-score conversion plus a standard normal table:
Then read cumulative area from a z-table and adjust for right-tail or between-range probability.
Step-by-step examples
Example 1: Left-tail probability
Suppose X ~ N(100, 15) and you want P(X ≤ 120).
- On TI: normalcdf(-1E99, 120, 100, 15)
- Result is approximately 0.9088
Interpretation: about 90.88% of values are 120 or below.
Example 2: Right-tail probability
For the same distribution, find P(X ≥ 130).
- Compute left-tail first: normalcdf(-1E99, 130, 100, 15) ≈ 0.9772
- Right-tail = 1 − 0.9772 = 0.0228
Only about 2.28% are at least 130.
Example 3: Between two values
Find P(90 ≤ X ≤ 110) for X ~ N(100, 15).
- normalcdf(90, 110, 100, 15) ≈ 0.4950
So roughly 49.5% lie within that range.
Frequent mistakes (and how to avoid them)
- Swapping μ and σ: always enter mean first, then standard deviation.
- Using right-tail incorrectly: if your calculator gives left-tail, subtract from 1.
- Wrong bounds: for cumulative areas, be clear whether the problem asks below, above, or between.
- Bad units: ensure x, μ, and σ are all in the same scale.
- Typing σ = 0: standard deviation must be positive.
CDF vs inverse CDF
Use CDF when you know x and want probability. Use inverse CDF (often invNorm) when you know the probability and want the cutoff value x.
Example: “What score marks the top 5%?” is an inverse CDF question, not a direct CDF question.
Final takeaway
Doing cumulative distribution function on calculator is mostly about choosing the correct tail and entering parameters in the right order. Once you know that, you can solve probability questions quickly and consistently. Use the interactive calculator above for immediate checks, then mirror the same logic on your TI, Casio, or any stats app.