Skip to main content

How to do a normal distribution (normal cdf and inverse normal) on the Casio fx-CG50

P(a < X < b) with normal cdf, and the value for a given probability with inverse normal, including finding σ or μ. Exact keystrokes for the fx-CG50 first, then the other calculators, a worked example you can check your answers against, the mistakes that cost marks, and the same thing in Desmos.

Calculators: Casio fx-CG50 (OS 3.80) · TI-84 Plus CE (OS 5.8.x) · TI-Nspire CX II (OS 6.x) · Casio fx-991EX ClassWiz (the fixed ROM) · Casio fx-991CW ClassWiz (the fixed ROM). Checked September 2026.

When you need it

A Level Statistics (and IAL S1): probabilities, percentage points, finding μ or σ, and the normal as an approximation to the binomial (with a continuity correction).

Practise it: Statistical distributions · IAL S1.

Keystrokes on your calculator

Pick your calculator: the page remembers it next time.

Normal distribution on the Casio fx-CG50

Written for OS 3.80 (menus unchanged from OS 3.60 onwards as far as we can tell). Casio fx-CG50: graphic (GDC).

  1. MENU 2 (STATISTICS), then F5 (DIST) F1 (NORM).
  2. Probability: F2 (Ncd). Data: Variable. Lower 45, Upper 60, σ 8, μ 50 (EXE after each). Move to Execute and press EXE (or F1 CALC).
  3. One-sided: for P(X > 62) use Lower 62, Upper 1E99 (type 1 ×10ˣ 99); for P(X < k) use Lower −1E99.
  4. Inverse: F3 (InvN). Tail: Left, Area 0.9, σ 8, μ 50, then Execute.
  5. Finding σ or μ: InvN with σ = 1, μ = 0 gives z, then solve z = (x − μ) ÷ σ.
Normal C.Dp =0.62836469z:Low=−0.625z:Up =1.25
Schematic fx-CG50 screen (not a photo); the bottom row is what F1–F6 do here.
  • The Casio order is σ before μ. Entering 50 then 8 finds N(8, 50²).
  • InvN's Tail can be Left, Right or Central, so P(X > k) = 0.1 can be done directly with Tail: Right.
  • From RUN-MATRIX the same functions are under OPTN F5 (STAT) F3 (DIST) F1 (NORM): NormCD(45, 60, 8, 50).

Worked example

X ~ N(50, 8²). Find (a) P(45 < X < 60), (b) P(X > 62), (c) k with P(X < k) = 0.9. (d) Y ~ N(50, σ²) with P(Y < 70) = 0.95: find σ.

Answers (checked with Python)

(a) 0.628365. (b) 0.0668072. (c) k = 60.2524. (d) invNorm(0.95) = 1.64485, so σ = 20 ÷ 1.64485 = 12.1591.

Common calculator mistakes

Do it in Desmos

Not in the exam. Desmos is not allowed in A Level exams. Use it to learn, to check a calculator answer, and to see what a function or data set looks like.

  1. Type N = normaldist(50, 8). Desmos draws the curve.
  2. N.cdf(45, 60) gives P(45 < X < 60); tick the shading option in the distribution to see the area.
  3. N.inversecdf(0.9) gives k for P(X < k) = 0.9.

The interactive graph loads here when you scroll to it.

Or open desmos.com/calculator and type:

  • N=normaldist(50,8)
  • N.cdf(45,60)
  • N.inversecdf(0.9)

More calculator skills

Sources

Menu names are taken from each manufacturer's manual for the OS versions shown. Menus can move slightly between OS updates: if a screen looks different on yours, the manual for your version is the reference, and please tell us so we can update this page. Worked-example answers were recomputed independently in Python.