Home

Tutoring

Subjects

Live Classes

Study Coach

Essay Review

On-Demand Courses

Colleges

Games

Opening subject page...

Loading your content

  1. Statistics
  2. Using Probabilities to Make Fair Decisions

0.4817P = 1/n
Statistics & Probability • Evaluate Outcomes of Decisions

Using Probabilities to Make Fair Decisions

How drawing lots, flipping coins, and random number generators turn the mathematics of chance into tools for impartial choice.

Section 1

A Brief History of Fairness by Chance

Long before anyone wrote the word "probability," people relied on randomness to settle disputes and divide resources. The core idea is surprisingly old: if no person controls the outcome, no person can be accused of favoritism. From ancient temple rituals to modern sports drafts, random mechanisms have served as impartial referees whenever human judgment might be biased.

~1000 BCE
Ancient Israelites used casting lots—small marked stones or sticks drawn from a container—to allocate land among tribes. The practice appears throughout the Hebrew Bible and was considered a way to let divine will, rather than human preference, guide the decision.
~500 BCE
Athenian democracy selected most public officials by sortition—essentially a lottery. Citizens placed their name-tokens into a machine called a kleroterion, which randomly chose who would serve on juries and councils, reducing the influence of wealth and rhetoric.
1654
Blaise Pascal and Pierre de Fermat exchanged letters that laid the foundations of probability theory. Their work on the "problem of points"—how to fairly divide the stakes of an interrupted game—gave fairness a precise mathematical vocabulary.
1969
The United States held the first Vietnam-era draft lottery, assigning random numbers to birth dates to determine the order in which men would be called for military service. This high-stakes application of probability brought public attention to both the power and the pitfalls of random selection.
1990s–Present
Pseudorandom number generators (PRNGs) became standard in software, enabling everything from randomized clinical trials to NBA draft lotteries. Modern cryptographic generators produce sequences so unpredictable that they satisfy the most stringent fairness standards.

The through-line across all these milestones is a single insight: when the stakes are high and trust is fragile, a well-designed random process can be more impartial than any committee. The remainder of this lesson explores the mathematical principles that make such processes genuinely fair, the practical mechanisms available to you, and how to evaluate whether a given procedure truly gives every participant an equal chance.

Section 2

Core Principles of Fair Decision-Making

A decision is considered fair in the probabilistic sense when every eligible participant or option has an equal probability of being selected, and no party can manipulate the outcome. Four foundational ideas underpin this standard.

1

Equal Likelihood

Each outcome in the sample space must have the same probability. If there are n equally deserving choices, each should have a probability of exactly 1/n.
2

Independence

The random mechanism must be independent of any participant's actions or knowledge. Coin flips, shuffled cards, and computer-generated numbers all satisfy this because no one can influence the result.
3

Transparency

All parties agree on the procedure in advance, understand the probabilities involved, and can verify—at least in principle—that the process was carried out correctly.
4

Reproducibility of Odds

If the process were repeated many times, the long-run frequency of each outcome would converge to the theoretical probability. This is the Law of Large Numbers at work, assuring consistency.
✦ Key Takeaway
Think of a fair random process like a well-balanced roulette wheel at a casino: every numbered slot is exactly the same size, the ball is spun without bias, and the rules are posted for everyone to read. If even one slot were larger, or the dealer could nudge the ball, the game would stop being fair—even if it still looked random to a casual observer.
Section 3

Visualizing Equal Probability

The diagram below illustrates the key distinction between a fair and an unfair selection process. On the left, five students each occupy an equal slice of the probability space—each has a 1/5 = 0.20 (20%) chance of being chosen. On the right, the slices are unequal: some students have a larger chance of selection than others, violating the equal-likelihood principle.

FAIREach student: P = 1/5 = 0.20A: 20%B: 20%C: 20%D: 20%E: 20%✓UNFAIRUnequal probabilitiesA: 40%B: 25%C: 5%D: 10%E: 20%✗
Figure 1 — Fair selection gives every participant an identical probability. Unfair selection skews the distribution, favoring some over others.

When you look at the fair chart, every wedge is the same angular size—72° out of the full 360°. That geometric equality is the equal-probability condition. In any real decision, your job is to choose a mechanism that produces this kind of symmetry. If you can verify that each outcome occupies the same fraction of the possibility space, the process is fair regardless of who is watching or what anyone hopes will happen.

Section 4

The Mathematical Framework

Probability provides the language for defining and verifying fairness. The formulas here are straightforward, but understanding what they mean is essential for evaluating whether a decision process is truly unbiased.

Probability of Fair Selection
P(any one option) = 1 / n
where n = total number of equally eligible options or participants

This is the simplest possible model, and it is the benchmark for fairness. If four team captains need to pick the order in which they draft players, each captain should have a 1/4 = 0.25 probability of drafting first. Any deviation from this uniform distribution means the process favors someone.

Expected Frequency Over Repeated Trials
E(k) = n_trials × P(outcome) = n_trials / n
E(k) = expected number of times a specific outcome appears in ntrials repetitions

The Law of Large Numbers guarantees that as you repeat a fair random process many times, the observed frequency of each outcome will approach its theoretical probability. For instance, if you flip a fair coin 1,000 times, you'd expect roughly 500 heads—not exactly 500 every time, but the proportion will hover close to 0.50.

Verifying Fairness with a Simulation
Observed proportion ≈ 1/n ± margin of error
As ntrials → ∞, the margin of error → 0. A large deviation from 1/n suggests bias.

This last expression isn't a formula you plug numbers into—it's a decision rule. After running a simulation (say, 500 random draws), you check whether each option appeared approximately 1/n of the time. If one option shows up far more or less often than expected, you have evidence that the process may not be fair. You'll practice this kind of reasoning in the worked example and problem set below.

Section 5

Methods for Fair Random Selection

There are several practical mechanisms for generating randomness, each with its own strengths and contexts. The diagram below shows a decision flowchart for choosing the right tool, followed by a detailed comparison table.

Need a fair decision?How many options / people?Exactly 23 or moreCoin FlipP = 1/2 eachPhysical or digital?PhysicalDigitalDrawing LotsNames in a hat / cardsRoll DiceAssign numbers to peopleRandom Number GeneratorSoftware / calculator PRNGVerify: P = 1/n for eachAll methods → equal probability ✓
Figure 2 — Choosing the right random mechanism depends on how many options exist and whether a physical or digital tool is available.

Let's examine each method in detail.

MethodHow It WorksBest ForWatch Out For
Coin flipA symmetric coin is tossed. Heads or tails each have P = 0.50.Binary decisions between exactly two options.Coins can be slightly biased; agree on "heads = option A" before flipping.
Drawing lotsNames or numbers written on identical slips are placed in a container and drawn without looking.Small groups (2–30) needing a tangible, visible process.Slips must be identical in size and texture. The container must be shaken thoroughly to prevent ordering bias.
Dice rollAssign each option a number; roll a fair die. Re-roll if the result doesn't correspond to any option.Up to 6 options (one standard die) or more with multiple dice.If n doesn't divide evenly into the die's faces, some outcomes are more likely unless you use a re-roll rule.
Random number generatorSoftware or a calculator generates a pseudorandom integer between 1 and n with equal probability for each integer.Any group size, especially large populations; remote or digital settings.Ensure the tool uses a uniform distribution. Low-quality generators may exhibit patterns over many trials.
Shuffled deckAssign each person a card; shuffle the deck thoroughly; draw cards to determine order or selection.Ordering or ranking (e.g., presentation order, draft sequence).Requires a thorough shuffle (at least 7 riffle shuffles for a 52-card deck) to achieve near-uniform randomness.

All five methods converge on the same mathematical guarantee when implemented correctly: each participant's probability of being selected equals 1/n. The choice among them is largely about context—how many options you have, whether you need a physical record, and whether participants are in the same room.

Section 6

Worked Example

A teacher has 6 students who all want to present their project first. She decides to use a random number generator to pick the order fairly. Let's walk through how to set this up, verify that it's fair, and interpret the result.

Random Presentation Order for 6 Students

Step 1 — Define the Sample Space

There are 6 students, so assign each one a number from 1 through 6. The sample space is S = {1, 2, 3, 4, 5, 6}. The teacher will generate a random integer from 1 to 6; the student whose number comes up presents first.

Step 2 — Verify Equal Probability

A properly functioning random number generator using a uniform distribution on {1, 2, 3, 4, 5, 6} assigns each integer the probability:
P(any student) = 1/6 ≈ 0.1667 (16.67%). Since every student has the same probability, the process satisfies the equal-likelihood criterion.

Step 3 — Run the Generator

The teacher uses her graphing calculator's randInt(1, 6) function and obtains the result 4.

Step 4 — Determine the Full Order

To determine the complete presentation order (not just who goes first), the teacher can repeat the process. She generates random integers for the remaining 5 students, re-rolling if a number that has already been assigned appears. Alternatively, she generates a random permutation of {1, 2, 3, 4, 5, 6}. The result is:
Order: 4, 1, 6, 3, 5, 2 — Student 4 presents first, Student 1 second, and so on.

Step 5 — Interpret and Verify

Each of the 6! = 720 possible orderings was equally likely to appear. The specific sequence 4, 1, 6, 3, 5, 2 had a probability of 1/720 ≈ 0.00139—tiny, but that's exactly the point: no ordering was privileged over any other. If the teacher repeated this process across many class sessions, each student would go first roughly 1/6 of the time, confirming long-run fairness.
Section 7

Strengths, Limitations, and Common Pitfalls

Using probability to make decisions is powerful, but it isn't a magic bullet. Understanding when random selection works well—and when it doesn't—is an important part of statistical literacy.

StrengthsLimitations
Eliminates personal bias and favoritism entirely.Doesn't account for differences in merit, need, or qualification (when those matter).
Transparent and verifiable: everyone can confirm the process was followed.Poorly implemented randomness (e.g., insufficiently shuffled cards) can introduce hidden bias.
Mathematically provable: the equal-probability guarantee can be demonstrated.A single trial may feel "unfair" to the person who loses—randomness doesn't guarantee a preferred outcome.
Scalable from 2 people to millions (lotteries, draft systems).Pseudorandom generators can have subtle flaws if not sourced from a reliable algorithm.
Quick and decisive—no prolonged debate or negotiation needed.Inappropriate when equity (not just equality) matters—e.g., distributing aid based on need.

A common mistake is confusing equal opportunity (each person has the same chance) with equitable outcome (each person gets what they need). Random selection guarantees the former, not the latter. For example, a lottery for scarce medical supplies gives equal opportunity but doesn't prioritize the sickest patients. When fairness means "giving everyone the same chance regardless of who they are," random methods excel. When fairness means "allocating resources based on need," a probability-based approach must be combined with additional criteria.

✦ Key Takeaway
Random selection is like a referee who enforces the rules perfectly but never considers the score. It ensures that no player gets special treatment, which is exactly what you want when the "players" are equally deserving—but it's the wrong tool when the goal is to help the team that's behind.
Section 8

Connections to Advanced Probability and Decision Theory

The ideas in this lesson are the entry point to several more sophisticated concepts you may encounter in college-level statistics, computer science, or economics. Here's a quick look at how they connect.

This LessonAdvanced ExtensionWhere You'll See It
Equal probability for n options: P = 1/nDiscrete uniform distribution — a formal probability distribution where every outcome in a finite set has the same probability.College statistics, algorithm design
Coin flips and dice rollsBernoulli and multinomial trials — frameworks for modeling repeated random experiments with two or more outcomes.AP Statistics, actuarial science
Random number generatorsMonte Carlo simulation — using thousands of random samples to estimate complex probabilities, integrals, or optimization solutions.Engineering, physics, finance
"Is this process fair?" reasoningHypothesis testing for uniformity — chi-squared goodness-of-fit tests determine whether observed frequencies match a uniform distribution.AP Statistics, research methodology
Choosing the best decision methodGame theory and mechanism design — the study of creating systems (auctions, voting rules, allocation algorithms) that produce fair or efficient outcomes.Economics, political science, CS

If you continue into AP Statistics or a college probability course, you'll learn how to test whether a random process is truly uniform using formal statistical tools like the chi-squared test. For now, the key understanding is that fairness isn't just a feeling—it's a mathematically testable property of a decision-making procedure.

Section 9

Practice Problems

PROBLEM 1 — CONCEPTUAL
A club has 8 members and needs to choose one person to represent them at a conference. The club president says, "I'll just pick the person I think is most qualified." A different member suggests drawing names from a hat. Explain why drawing names from a hat is considered probabilistically fair while the president's choice is not, even if the president is well-intentioned.
PROBLEM 2 — BASIC CALCULATION
A group of 12 friends wants to randomly select 3 people to ride in the front row of a roller coaster. They each draw a numbered slip from a bag containing slips numbered 1 through 12. The three lowest numbers win. What is the probability that any one specific friend gets a front-row seat?
PROBLEM 3 — INTERMEDIATE
Three students—Ava, Ben, and Carlos—want to decide who goes first in a board game. They plan to roll a single standard six-sided die. They propose: Ava wins if the die shows 1 or 2, Ben wins on 3 or 4, and Carlos wins on 5 or 6. Is this procedure fair? Now suppose a fourth player, Dana, joins. They suggest: Ava wins on 1, Ben on 2, Carlos on 3, Dana on 4, and they re-roll on 5 or 6. Is this revised procedure fair? Justify your answer mathematically.
PROBLEM 4 — APPLIED / MULTI-STEP
A school has 200 students who entered a raffle for 5 identical prizes. The school uses a random number generator to produce 5 distinct integers between 1 and 200 (each student was assigned a unique number at entry). After the drawing, a parent complains that one family had 3 children in the raffle and none of them won. The parent argues the process must have been unfair. Calculate the probability that none of the 3 siblings win any prize, and use your result to evaluate the parent's complaint.
PROBLEM 5 — CRITICAL THINKING / SYNTHESIS
A company needs to lay off 10 of its 80 employees due to budget cuts. The CEO proposes using a random number generator to select the 10 employees, arguing that this is the fairest method because every employee has an equal 10/80 = 12.5% chance of being selected. Write a well-reasoned argument either supporting or challenging this proposal. In your argument, distinguish between probabilistic fairness (equal likelihood) and equitable fairness (accounting for relevant differences), and explain which concept is more appropriate in this situation.
Summary

Lesson Summary

Using probabilities to make fair decisions means choosing a random mechanism—such as drawing lots, flipping a coin, rolling dice, or using a random number generator—that gives every eligible option an equal probability of 1/n. The mathematical foundation rests on four principles: equal likelihood, independence from human influence, transparency of the procedure, and reproducibility confirmed by the Law of Large Numbers. Whether you're selecting a presentation order in class or evaluating a national draft lottery, the key question is always the same: does each participant occupy an identical fraction of the probability space?

Equally important is recognizing the limits of random fairness. Probabilistic equality is the right standard when participants are equally deserving, but it can be the wrong tool when relevant differences—like need, merit, or vulnerability—should influence the decision. The most sophisticated applications of probability in decision-making combine randomness for impartiality with criteria for equity, using the strengths of both to produce outcomes that are not only unbiased but also just.

Varsity Tutors • Statistics & Probability (Common Core) • Using Probabilities to Make Fair Decisions