IB Maths AA HL Topic 4 — Statistics & Probability Paper 2 ~7 min read

Calculating Binomial Probabilities

Once X ~ B(n, p) is set up, every probability question is a one-line GDC call. The skill is translating exam wording into the right inequality before pressing the button. Strict inequalities convert to weak ones using P(X < k) = P(X ≤ k āˆ’ 1).

šŸ“˜ What you need to know

Single-value probabilities

Probability of exactly r successes (booklet) P(X = r)  =  nCr Ā· pr Ā· (1 āˆ’ p)n āˆ’ r

For a single value, use BinomPdf on the GDC. Different calculators name it differently — Binomial PD, BPD, Binomial Pdf — but it always wants n, p, and x.

Cumulative and range probabilities

For a range, use BinomCdf — it sums P(X = i) from a lower limit to an upper limit. Most calculators take both endpoints; some take only an upper limit, in which case use the identities below.

You wantComputationWhy
P(X ≤ k)BinomCdf(n, p, 0, k)lower bound is 0 (no negative successes)
P(X ≄ k)1 āˆ’ P(X ≤ k āˆ’ 1)complement of “less than k
P(X > k)1 āˆ’ P(X ≤ k)complement of “at most k
P(a ≤ X ≤ b)BinomCdf(n, p, a, b)both endpoints included

Strict inequalities → weak inequalities

Because X only takes integer values, you can rewrite any strict inequality (< or >) as a weak one (≤ or ≄) by shifting the bound by 1.

P(X < k)
= P(X ≤ k āˆ’ 1)
drop down by 1
P(X > k)
= P(X ≄ k + 1)
step up by 1
Open range trick: P(a < X < b) = P(a + 1 ≤ X ≤ b āˆ’ 1). Bump both endpoints inwards by 1 and use BinomCdf normally. Example: 5 < X < 12 becomes 6 ≤ X ≤ 11.

🧭 Recipe — calculate any binomial probability

  1. Confirm X ~ B(n, p) and write it down.
  2. Translate the wording into an inequality on integer values.
  3. Convert strict (<, >) to weak (≤, ≄) by shifting bounds by 1.
  4. Choose the GDC function: BinomPdf for “= k“, BinomCdf for ranges; complement for upper-tail.
  5. Round to 3 sf and check 0 ≤ answer ≤ 1.

Worked examples

WE 1

Single value — P(X = k)

Let X ~ B(15, 0.4). Find P(X = 7).

Identify n = 15, p = 0.4, x = 7 Use BinomPdf on the GDC P(X = 7) = BinomPdf(15, 0.4, 7) = 0.17708… P(X = 7) ā‰ˆ 0.177 (3 sf) by formula: ¹⁵C₇ Ā· 0.4⁷ Ā· 0.6⁸ — but the GDC does it in one keystroke
WE 2

Cumulative — P(Y ≤ k)

Let Y ~ B(25, 0.6). Find P(Y ≤ 12).

Lower bound is 0, upper bound is 12 Use BinomCdf on the GDC P(Y ≤ 12) = BinomCdf(25, 0.6, 0, 12) = 0.15376… P(Y ≤ 12) ā‰ˆ 0.154 (3 sf) “at most 12” includes 12 — boundary IS in the count
WE 3

Upper tail using complement — P(X ≄ k)

Let X ~ B(30, 0.2). Find P(X ≄ 8).

Complement: P(X ≄ 8) = 1 āˆ’ P(X ≤ 7) Compute P(X ≤ 7) on the GDC P(X ≤ 7) = BinomCdf(30, 0.2, 0, 7) = 0.76079… Subtract from 1 P(X ≄ 8) = 1 āˆ’ 0.76079… = 0.23920… P(X ≄ 8) ā‰ˆ 0.239 (3 sf) “at least 8” → the bound is INCLUDED, so subtract P(X ≤ 7), not P(X ≤ 8)
WE 4

Inclusive range — P(a ≤ W ≤ b)

Let W ~ B(50, 0.45). Find P(20 ≤ W ≤ 28).

Both endpoints already inclusive — just use BinomCdf P(20 ≤ W ≤ 28) = BinomCdf(50, 0.45, 20, 28) = 0.75825… P(20 ≤ W ≤ 28) ā‰ˆ 0.758 (3 sf) lower = 20, upper = 28 — both included since both inequalities use ≤
WE 5

Strict-strict range — P(a < Z < b)

Let Z ~ B(18, 0.55). Find P(5 < Z < 12).

Convert strict-strict to weak-weak: bump both inwards by 1 5 < Z < 12 → 6 ≤ Z ≤ 11 Apply BinomCdf with the new bounds P(6 ≤ Z ≤ 11) = BinomCdf(18, 0.55, 6, 11) = 0.75590… P(5 < Z < 12) ā‰ˆ 0.756 (3 sf) always write the conversion line — earns the setup mark even if calc slips
WE 6

Real-world — multiple-choice quiz with guessing

A multiple-choice quiz has 24 questions, each with 4 options. A student guesses every answer. Let G be the number of correct guesses.

(a) State the distribution of G. (b) Find P(G = 6). (c) Find P(G ≤ 5). (d) Find P(G ≄ 10). (e) Find P(4 ≤ G ≤ 9).

(a) Set up — n = 24, p = 1/4 = 0.25 G ~ B(24, 0.25) (b) Single value P(G = 6) = BinomPdf(24, 0.25, 6) = 0.18525… ā‰ˆ 0.185 (c) Cumulative P(G ≤ 5) = BinomCdf(24, 0.25, 0, 5) = 0.42215… ā‰ˆ 0.422 (d) Upper tail via complement P(G ≄ 10) = 1 āˆ’ P(G ≤ 9) = 1 āˆ’ 0.94533… = 0.05466… ā‰ˆ 0.055 (e) Inclusive range P(4 ≤ G ≤ 9) = BinomCdf(24, 0.25, 4, 9) = 0.83031… ā‰ˆ 0.830 (b) 0.185; (c) 0.422; (d) 0.055; (e) 0.830 scoring 10+ by guessing alone is unlikely (ā‰ˆ 5.5%) — sanity check passes

šŸ’” Top tips

⚠ Common mistakes

That closes the Binomial Distribution sub-topic. Up next: the Normal Distribution — a continuous distribution where the GDC handles the heavy lifting in much the same way, but the underlying mechanics are quite different. Expect to use it for height, weight, exam scores, and any phenomenon where values cluster around a mean with diminishing tails.

Need help with Statistics & Probability?

Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.

Book Free Session →