Skip to main content

How to do binomial and Poisson probabilities (pdf and cdf) on the Casio fx-CG50

P(X = r) and P(X ≤ r) for B(n, p) and Po(λ), and how to turn ≥, > and "between" into what the calculator does. 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). Checked September 2026.

When you need it

Binomial in AA and AI (SL and HL); Poisson in AA HL and AI HL. Typical Paper 2 parts: "exactly", "at most", "at least" and "between" probabilities, and the expected number. Define the distribution (X ~ B(12, 0.3)) before you use it.

Practise it: SL AA binomial · SL AI probability distributions · HL AA Poisson · HL AI Poisson.

Keystrokes on your calculator

Pick your calculator: the page remembers it next time.

Binomial and Poisson distributions 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), F5 (DIST), then F5 (BINOMIAL). For Poisson: F6 (▷) F1 (POISSON).
  2. Exactly: F1 (Bpd). Data: Variable, x 4, Numtrial 12, p 0.3, Execute.
  3. Cumulative: F2 (Bcd). Data: Variable, Lower 0, Upper 4, Numtrial 12, p 0.3, Execute. For P(X ≥ 5) use Lower 5, Upper 12; for P(2 ≤ X ≤ 5) Lower 2, Upper 5.
  4. Poisson: F1 (Ppd) with x and μ (= λ = 3.5), or F2 (Pcd) with Lower, Upper and μ.
Binomial C.DData :VariableLower :0Upper :4Numtrial:12p :0.3CALC
Schematic fx-CG50 screen (not a photo); the bottom row is what F1–F6 do here.
  • Because the fx-CG50's Bcd and Pcd take a Lower and an Upper value, you rarely need the 1 − P(…) step. (Older Casio models only ask for x and give P(X ≤ x).)
  • Data: List works out several x values at once from a list.
  • InvB (F3) finds the smallest x with P(X ≤ x) ≥ a given value: useful for critical regions.

Worked example

X ~ B(12, 0.3). Find P(X = 4), P(X ≤ 4), P(X ≥ 5) and P(2 ≤ X ≤ 5). Y ~ Po(3.5). Find P(Y = 2), P(Y ≤ 2) and P(Y > 4).

Answers (checked with Python)

P(X = 4) = 0.231140, P(X ≤ 4) = 0.723655, P(X ≥ 5) = 1 − P(X ≤ 4) = 0.276345, P(2 ≤ X ≤ 5) = 0.797126. P(Y = 2) = 0.184959, P(Y ≤ 2) = 0.320847, P(Y > 4) = 1 − P(Y ≤ 4) = 0.274555.

Common calculator mistakes

Do it in Desmos

Not in the exam. Desmos is not an approved calculator for IB exams, so never rely on it for Paper 2. It is excellent for learning, checking a GDC answer and building graphs for your Internal Assessment (IA).

  1. B = binomialdist(12, 0.3) draws the bar chart.
  2. B.pdf(4) is P(X = 4); B.cdf(4) is P(X ≤ 4); B.cdf(2, 5) is P(2 ≤ X ≤ 5).
  3. P = poissondist(3.5) works the same way.

The interactive graph loads here when you scroll to it.

Or open desmos.com/calculator and type:

  • B=binomialdist(12,0.3)
  • B.pdf(4)
  • B.cdf(4)
  • B.cdf(2,5)
  • P=poissondist(3.5)
  • P.cdf(2)

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.