IB Maths AA SL Topic 4 โ€” Stats & Probability Paper 2 ๐ŸŽฏ Skill ~3 min practice

AA SL Binomial Probability skills

Binomial models the number of successes in n independent trials with probability p. The IB never asks you to compute these by hand โ€” your GDC has dedicated functions. Master binomPdf and binomCdf and most binomial questions are 30-second wins.

The Method

X ~ B(n, p) n = number of trials  ยท  p = probability of success
Function 1

P(X = k)

binomPdf(n, p, k)
“exactly k” successes
Function 2

P(X โ‰ค k)

binomCdf(n, p, 0, k)
“at most” or “no more than”
Function 3

P(X โ‰ฅ k)

1 โˆ’ binomCdf(…0, kโˆ’1)
“at least” โ€” use complement

When does binomial actually apply?

How to find binomPdf / binomCdf

TI-84 Plus
  1. Press 2nd โ†’ VARS (DISTR menu)
  2. Scroll to A: binompdf( or B: binomcdf(
  3. Enter trials (n), p, and x value (or lower/upper)
  4. Press ENTER โ€” read off probability
Casio fx-CG50
  1. Open STAT menu โ†’ DIST (F5)
  2. Choose BINM (F5)
  3. Pick Bpd (F1) for P(X=k) or Bcd (F2) for P(Xโ‰คk)
  4. Set Data: Variable, then enter x, n, p

Worked examples

WE 1 EASY

A coin is biased so that P(heads) = 0.6. It is tossed 10 times. Find the probability of exactly 7 heads, to 3 sf.

step 1 โ€” identify the binomial X ~ B(10, 0.6) โ€” count heads in 10 tossesstep 2 โ€” “exactly 7” โ†’ use binomPdf P(X = 7) = binomPdf(10, 0.6, 7)step 3 โ€” read off GDC โ‰ˆ 0.21499…P(X = 7) โ‰ˆ 0.215 (3 sf) “exactly” is the keyword for binomPdf โ€” single value, no range.
WE 2 MEDIUM

A basketball player has a free-throw success rate of 0.75. They take 12 shots. Find the probability that they make at most 8 shots, to 3 sf.

step 1 โ€” set up the binomial X ~ B(12, 0.75)step 2 โ€” “at most 8” means X โ‰ค 8 P(X โ‰ค 8) = binomCdf(12, 0.75, 0, 8)step 3 โ€” GDC value โ‰ˆ 0.39068…P(X โ‰ค 8) โ‰ˆ 0.391 (3 sf) “at most k” = P(X โ‰ค k) โ†’ binomCdf from 0 to k.
WE 3 HARD

A factory produces light bulbs with a 4% defect rate. In a batch of 50, find the probability that at least 3 are defective, to 3 sf.

step 1 โ€” binomial set-up X = number of defective   X ~ B(50, 0.04)step 2 โ€” “at least 3” โ†’ use complement P(X โ‰ฅ 3) = 1 โˆ’ P(X โ‰ค 2)step 3 โ€” GDC P(X โ‰ค 2) = binomCdf(50, 0.04, 0, 2) โ‰ˆ 0.67673 P(X โ‰ฅ 3) = 1 โˆ’ 0.67673 = 0.32327P(X โ‰ฅ 3) โ‰ˆ 0.323 (3 sf) “at least k” โ†’ 1 โˆ’ P(X โ‰ค kโˆ’1). don’t subtract from k itself!

Practice questions

Try each one yourself first, then click the question to reveal the worked answer. Use your GDC for all of these โ€” that’s the skill.
Q1 EASY A die is rolled 8 times. Find P(exactly 2 sixes), to 3 sf. Show answer โ–ผHide answer โ–ฒ
X ~ B(8, 1/6) P(X = 2) = binomPdf(8, 1/6, 2) โ‰ˆ 0.260 (3 sf)
Q2 EASY A multiple-choice test has 15 questions, 4 options each (random guess). Find P(at most 3 correct), to 3 sf. Show answer โ–ผHide answer โ–ฒ
X ~ B(15, 0.25) P(X โ‰ค 3) = binomCdf(15, 0.25, 0, 3) โ‰ˆ 0.461 (3 sf)
Q3 MEDIUM In a survey, 60% of people own a smartphone. From a sample of 20, find P(at least 15 own one), to 3 sf. Show answer โ–ผHide answer โ–ฒ
X ~ B(20, 0.6) โ€” use complement P(X โ‰ฅ 15) = 1 โˆ’ P(X โ‰ค 14) = 1 โˆ’ binomCdf(20, 0.6, 0, 14) = 1 โˆ’ 0.8744 = 0.1256 โ‰ˆ 0.126 (3 sf)
Q4 MEDIUM A seed has 80% germination rate. 25 seeds are planted. Find P(between 18 and 22 inclusive germinate), to 3 sf. Show answer โ–ผHide answer โ–ฒ
X ~ B(25, 0.8) โ€” between two values P(18 โ‰ค X โ‰ค 22) = binomCdf(25, 0.8, 18, 22) โ‰ˆ 0.760 (3 sf) when “between a and b inclusive” โ€” set lower = a, upper = b directly!
Q5 HARD A footballer scores from 35% of free kicks. In 14 attempts, find P(more than 5 goals), to 3 sf. Show answer โ–ผHide answer โ–ฒ
“more than 5” means X โ‰ฅ 6 (not X โ‰ฅ 5) P(X > 5) = P(X โ‰ฅ 6) = 1 โˆ’ P(X โ‰ค 5) = 1 โˆ’ binomCdf(14, 0.35, 0, 5) = 1 โˆ’ 0.7218 = 0.2782 โ‰ˆ 0.278 (3 sf) “more than 5” excludes 5 itself! always check inclusive vs exclusive.

โš  Common mistakes

๐Ÿ“–

Want the theory?

Read the full Binomial Distribution notes for the formula derivation, mean and variance (E(X) = np, Var(X) = np(1โˆ’p)), and how to spot a binomial situation in word problems.

Need help with Binomial Probability?

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

Book Free Session โ†’