Binomial Distribution

Context: FIT1058_MOC, FIT2086_MOC Β· Bernoulli trial (one success/failure experiment) + binomial (successes across i.i.d. trials) Β· pmf uses the Binomial Coefficient Β· mean/variance via linearity of indicator sums Β· the two-outcome member of the parametric zoo

Quick Revision

  • 🎯 Objective: Bernoulli atom: , βž” sum i.i.d. atoms ⟹ .
  • πŸ“¦ Core Components: , βž” (linearity) βž” (independence).
  • ⚑ Key Constraint: indicator-sum trick beats brute-force pmf algebra; linearity needs no independence, variance does.

πŸ“ Core

1. The Bernoulli Atom (Single Trial)

  • Definition βž” with probability (success), with β€” any two-outcome experiment (coin, pass/fail, on/off).
  • Compact pmf form βž” on , written in FIT2086’s notation βž” the exponents act as selectors, collapsing to at and at .
  • Moments βž” ; (since ); variance max at (value ), zero at .
  • Sequences βž” i.i.d. = same , independent trials; the atom of binomial (count successes) and geometric (wait for first).

2. The Binomial Distribution

  • Definition βž” (FIT2086 writes ) = the number of successes across i.i.d. Bernoulli trials; the count is itself an RV over .
  • pmf derivation βž” one specific -success sequence has probability ; placements (Binomial Coefficient) ⟹ .
  • Why the coefficient is needed βž” for several sequences carry successes; admits the six orderings ⟹ .
  • Additivity in (FIT2086) βž” and with the same ⟹ β€” immediate from the definition as a sum of Bernoulli variates, so pooling batches simply adds trial counts.
  • Reading the pmf term by term (the standard β€œinterpret this factor” exam question):
Factor in Interpretation
probability of seeing successes
probability of the event not occurring times, i.e. failures
probability of successes and failures in one particular ordering
the number of orderings of successes among trials
probability of or more successes, irrespective of ordering
  • Every specific sequence is equally likely when βž” regardless of how many s it contains, so and both have βž” the factor is what makes counts unequal while sequences stay equal.

3. Moments via Indicator Sums

  • Decompose βž” with Bernoulli .
  • βž” sum of means (linearity β€” no independence needed).
  • βž” variances add only under independence; .
  • Approximation βž” large , small ⟹ [Poisson Distribution|Poisson].
  • Shape βž” mass skewed toward ; and produce mirror-image distributions.

πŸ“Š Exam Execution Trace & Applied Exercises

1. Manual Execution Trace Layout

:

Step / StateQuantityValue
1
2
3 ()

2. Applied Exercise β€” telephone sales (FIT2086)

Problem: each call yields a sale with probability , independently; the salesman makes calls, so . Find (i) ; (ii) ; (iii) .

Final Extracted Output: expected sales; ; . Key move: β€œ2 or more” is the complement of , not of β€” the boundary value sits inside both one-sided events, so .

3. Applied Exercise β€” fair-coin tails by hand (Studio 2)

Problem: (i) heads in tosses of a fair coin; (ii) ones in Bernoulli draws.

Final Extracted Output: ; . Key move: with every term shares the factor , so the sum collapses to β€” pure counting. For (ii), ” or more” complements , so pbinom takes .

When It Flips: the indicator sum is the showcase of linearity β€” instant . Binomial fixes and counts successes; the geometric fixes the first success and varies the trial count.

βš™οΈ In R

⚠️ Common Mistakes

  • πŸ’‘ Linearity needs no independence, variance does βž” always holds; requires independent trials.
  • πŸ’‘ Renaming success swaps βž” which outcome is β€œsuccess” is a modelling choice; keep it fixed through the calculation.
  • πŸ’‘ Additivity requires a shared βž” holds only when both batches share the success probability; differing leaves no binomial at all.
  • πŸ’‘ Calling a β‰₯3-outcome experiment binomial βž” a football match (win/draw/loss) or a die roll is not a binomial experiment; it becomes one only if you redefine the outcome as a single yes/no (β€œdid they win?”). Continuous measurements never qualify. Selection drill βž” Parametric Probability Distributions.
  • πŸ’‘ Confusing β€œthis sequence” with β€œthis many successes” βž” a named sequence has probability with no ; the coefficient appears only when the event is a count.

🧠 Active Recall