Top Edu Prep — Unit 3 StorybookTHE KINGDOM
OF PROBABILIA

A traveler's tale of counting, chance, and the quiet mathematics of "exactly how many out of how many." Walk the road with Nova the apprentice, and learn the Binomial Distribution one gate at a time.

3.1 BINS Conditions 3.2 The Formula 3.3 Mean & SD 3.4 Calculator
TOP EDU PREP · WRITTEN BY TEACHER KIM MIN-HO
3.1
Chapter One · The Gate of Four Seals

BINS Conditions

Nova arrived at the edge of Probabilia at dawn, where an enormous gate stood locked behind four brass seals. Before it sat the gatekeeper, Bina, who never let a single traveler pass without answering four quiet questions. "Every situation that wishes to be called Binomial," she said, "must earn all four of my seals — B, I, N, and S. Miss even one, and you are something else entirely."

What Bina Actually Checks

A situation is Binomial only when all four conditions below are true at once. Think of it as a checklist — if any single item fails, the situation is not binomial, even if the other three are perfect.

B

Binary outcomes

Every trial has only two possible results: "success" or "failure." No third option, no partial credit.

I

Independent trials

One trial's result must never change the odds of the next trial. What happens to traveler #1 cannot influence traveler #2.

N

Number fixed

The total number of trials, n, is decided before you start counting. You never stop early or keep going based on results.

S

Same probability

The probability of success, p, stays exactly the same on every single trial, from the first to the last.

Four Travelers at the Gate
Case 1 · The Coin TosserBinomial ✓

A fair coin is flipped 8 times in a row. Nova counts the number of heads.

B Each flip is heads or tails — binary. ✓
I One flip can't affect the next flip. ✓
N Nova decided on exactly 8 flips beforehand. ✓
S Every flip has p = 0.5, always. ✓
All four seals earned → this IS binomial, with n = 8, p = 0.5.
Case 2 · The Card DrawerNot Binomial ✗

Five cards are drawn from a 52-card deck without replacement. Nova counts how many are aces.

B Ace or not-ace — binary. ✓
I Once a card is removed, the deck changes, so the odds shift for the next draw. ✗
The Independent seal is broken → NOT binomial (this is a "hypergeometric" situation, a cousin distribution).
Case 3 · The Die Roller Who WaitsNot Binomial ✗

Nova rolls a die again and again until the first 6 appears, then counts how many rolls it took.

N The number of rolls is not fixed in advance — it depends on when the 6 shows up. ✗
The Number-fixed seal is broken → NOT binomial (this is a "geometric" situation instead).
Case 4 · The Royal SurveyBinomial ✓ (approximately)

A royal census worker randomly surveys 50 people from a kingdom of two million, asking "Do you enjoy the harvest festival?" (70% of the whole kingdom would say yes.)

B Yes or no — binary. ✓
I Because the kingdom is so much larger than the sample, removing one person barely changes the odds for the next — independence holds closely enough. ✓
N Exactly 50 people were planned. ✓
S Each person has roughly the same 0.70 chance of saying yes. ✓
All four seals earned (approximately) → treat as binomial, n = 50, p = 0.7.
✦ Trial by the Gate

A teacher gives a pop quiz to the same 10 students every day for a week, and each day the questions are different so no student's score affects another day's score. She counts, across the week, how many days each individual student passes (assuming each day that student has the same 80% chance of passing, independent of other days). Is counting one student's number of "pass" days across n = 5 days binomial?

B The Seal of BINS is yours.
3.3
Chapter Three · The Twin Sages of Balance Tower

Mean & Standard Deviation

In Balance Tower live twin sages: Mu, who always predicts where the center of a hundred trials will settle, and Sigma, who always predicts how far results typically wander from that center. "We don't guess the future," Mu said, "we describe its shape before it even happens."

What Mu and Sigma Are Really Telling You

Mean (μ) is the expected number of successes if you repeated the whole experiment many, many times and averaged the results — the "typical" number of successes you'd expect. It is simply n × p.

Standard deviation (σ) measures how much the actual number of successes tends to swing above or below that mean, trial-run to trial-run. A small σ means results cluster tightly near μ; a large σ means results scatter more widely.

Mean of a Binomial Distribution μ  =  n × p
Standard Deviation of a Binomial Distribution σ  =  √( n × p × (1 − p) )
Three Readings from Balance Tower
Case 1 · The Seed Planter

A farmer plants n = 20 seeds, each with a p = 0.3 chance of sprouting. Find the mean and standard deviation of the number that sprout.

μ μ = np = 20 × 0.3 = 6 seeds expected to sprout
σ σ = √(20 × 0.3 × 0.7) = √4.2 ≈ 2.05 seeds
On average, 6 seeds sprout, typically wandering about ±2 seeds from that number.
Case 2 · One Hundred Coin Flips

A fair coin is flipped n = 100 times. Find the mean and standard deviation of the number of heads.

μ μ = np = 100 × 0.5 = 50 heads expected
σ σ = √(100 × 0.5 × 0.5) = √25 = 5 heads
You'd typically see somewhere around 45–55 heads.
Case 3 · The Archer, Revisited

Recall the archer with p = 0.7, firing n = 6 arrows. Find her mean and standard deviation of hits.

μ μ = np = 6 × 0.7 = 4.2 hits expected
σ σ = √(6 × 0.7 × 0.3) = √1.26 ≈ 1.12 hits
She lands about 4.2 hits on average, give or take roughly 1.1 hits.
✦ Trial in Balance Tower

A dice game has n = 50 trials with p = 0.4 chance of success each. What is the mean number of successes?

N The Seal of Balance is yours.

The Royal Ledger

Unit 3 · Binomial Distribution — Full Summary
B3.1 BINS
I3.2 Formula
N3.3 Mean/SD
S3.4 Calculator

3.1 — BINS Conditions

Binary outcomes · Independent trials · Number of trials fixed (n) · Same probability (p) each time. All four must hold for a binomial setting.

3.2 — Probability Formula

P(X=k) = nCk·pk·(1−p)n−k

Gives the exact probability of precisely k successes out of n trials.

3.3 — Mean & Standard Deviation

μ = np   |   σ = √(np(1−p))

μ is the expected number of successes; σ measures typical spread around μ.

3.4 — Calculator Spells

binompdf(n,p,k) = P(X=k)
binomcdf(n,p,k) = P(X≤k)

Use 1 − binomcdf(n,p,k) for P(X>k), the complement trick.