Probability Without Replacement: Matching Letters

Probability 9th-10th Grade
Problem
The letters of the word CALCULUS are each written on a card. Two cards are then chosen at random, without replacement. What is the probability that the two cards chosen show the same letter?

Visualizing the Letter Cards

Before we dive into the mathematics, let's see what we're working with. Each letter gets its own card, and we need to track which letters appear multiple times.

The letters of the word CALCULUS are each written on a card. Two cards are then chosen at random, without...

What You Will Learn

  • How to count favorable outcomes when letters appear with different frequencies
  • The difference between permutations and combinations in probability without replacement
  • Why single-occurrence items cannot contribute to "matching" events
  • How to systematically organize counting problems by categorizing possible outcomes
  • The relationship between total sample space and favorable outcomes in discrete probability

Solution: Method 1 — Favorable Pair Counting

We'll count the number of ways to choose two cards that show the same letter, then divide by the total number of ways to choose any two cards.

Step 1 — Analyze the letter frequencies

First, let's count how often each letter appears in CALCULUS:

LetterFrequencyCan form matching pair?
C2Yes
A1No
L2Yes
U2Yes
S1No

Total cards: 2 + 1 + 2 + 2 + 1 = 8

Step 2 — Calculate total possible pairs

When choosing 2 cards from 8 without replacement, order doesn't matter (we just want a pair). This is a combination problem:

Total ways = C(8,2) = 8!/(2! × 6!) = (8 × 7)/2 = 28

Step 3 — Count favorable matching pairs

Only letters appearing at least twice can form matching pairs. Let's count each:

  • C pairs: We have 2 C cards, so there's C(2,2) = 1 way to choose both
  • L pairs: We have 2 L cards, so there's C(2,2) = 1 way to choose both
  • U pairs: We have 2 U cards, so there's C(2,2) = 1 way to choose both
Total favorable outcomes = 1 + 1 + 1 = 3

Step 4 — Calculate the probability

Using the fundamental probability formula:

P(matching letters) = Favorable outcomes / Total outcomes = 3/28

This fraction is already in lowest terms since gcd(3, 28) = 1.

Solution: Method 2 — Sequential Choice Approach

Think of choosing the cards one after the other. The probability that the second card matches the first depends on what the first card was.

Step 1 — Identify the cases

After drawing the first card, we have different scenarios based on which letter we drew:

  • If first card is C, L, or U: There's exactly 1 matching card left among 7 remaining
  • If first card is A or S: There are 0 matching cards left among 7 remaining

Step 2 — Calculate conditional probabilities

Let's work through each case:

P(first is C) = 2/8 = 1/4 If first is C, then P(second is C | first is C) = 1/7
P(first is L) = 2/8 = 1/4 If first is L, then P(second is L | first is L) = 1/7
P(first is U) = 2/8 = 1/4 If first is U, then P(second is U | first is U) = 1/7
P(first is A) = 1/8 If first is A, then P(second is A | first is A) = 0/7 = 0
P(first is S) = 1/8 If first is S, then P(second is S | first is S) = 0/7 = 0

Step 3 — Apply the law of total probability

The probability of a matching pair is the sum of all successful paths:

P(match) = P(CC) + P(LL) + P(UU) = (2/8)(1/7) + (2/8)(1/7) + (2/8)(1/7) = 3 × (2/8)(1/7) = 3 × (2/56) = 6/56 = 3/28
The probability that two cards chosen without replacement show the same letter is 3/28.

Verification

Let's verify our answer by checking that it makes intuitive sense and by using an alternative counting method.

Reasonableness check

We have 8 cards total, and only 3 ways to get matching pairs out of 28 total pairs. This gives us 3/28 ≈ 0.107 or about 10.7%. This seems reasonable since most letters appear only once.

Direct enumeration verification

Let's label the cards as C₁, A, L₁, C₂, U₁, L₂, U₂, S. The matching pairs are:

  • {C₁, C₂}
  • {L₁, L₂}
  • {U₁, U₂}

That's exactly 3 matching pairs out of C(8,2) = 28 total pairs. ✓

Method consistency check

Both methods gave us the same answer: 3/28. ✓

Common Pitfalls

✗ Mistake 1: Counting single letters as potential matches
Some students include A and S in their favorable outcomes, reasoning "there's a 1/8 chance of drawing A first, then a 0/7 chance of matching it." While the calculation is correct (giving 0), the error is conceptual — you cannot form a matching pair from a letter that appears only once.
✗ Mistake 2: Using replacement logic
Calculating as if the first card is returned: P = (2/8)² + (2/8)² + (2/8)² = 3 × (4/64) = 12/64 = 3/16. This gives approximately 18.8%, which is too high. Without replacement, we have fewer total outcomes and the conditional probabilities change.
✗ Mistake 3: Double-counting in the sequential approach
Some students calculate P(first is C and second is C) + P(first is C and second is L) + ... listing all 64 ordered pairs. This counts each unordered pair twice. The correct approach either uses combinations (unordered) or uses conditional probability with the law of total probability.

The Pattern Behind This

This problem belongs to the family of "sampling without replacement" problems. The general pattern for finding matching pairs is:

P(matching pair) = Σ C(nᵢ, 2) / C(N, 2)

Where:

  • N is the total number of items
  • nᵢ is the frequency of the i-th distinct item type
  • The sum is over all item types where nᵢ ≥ 2

For CALCULUS: N = 8, and we have nC = 2, nL = 2, nU = 2 (the others have frequency 1, so they contribute 0 to the sum).

Important limitation: This formula assumes we're drawing exactly 2 items. For drawing k > 2 items, we'd need to ask whether "at least 2 match" or "all k match" — different problems with different formulas.

How to Spot This Problem Type

Watch for these key phrases that signal a matching-pairs probability problem:

  • "Without replacement" — distinguishes from simpler replacement problems
  • "Same [attribute]" — color, letter, number, etc.
  • Items with repeated values — multiple cards/balls of the same type
  • "Two [items] are chosen" — signals we're looking at pair outcomes
Variant alert: Sometimes this appears as "What is the probability that two cards are different?" In that case, calculate the matching probability first, then subtract from 1. For CALCULUS: P(different) = 1 - 3/28 = 25/28.

Real Applications

This type of calculation appears in several practical contexts:

  • Quality control: Randomly sampling two products from a batch — what's the probability they have the same defect type?
  • Genetics: Drawing two individuals from a population — what's the probability they share the same allele variant?
  • Survey analysis: Randomly selecting two responses — what's the probability they give the same answer to a multiple-choice question?
1
Three Cards Instead
Three cards are chosen at random from CALCULUS without replacement. What is the probability that at least two of them show the same letter?
Step 1 — Use complement approach

It's easier to find P(all three different) and subtract from 1.

Step 2 — Count total ways to choose 3 cards

C(8,3) = 8!/(3!5!) = 56 total ways.

Step 3 — Count ways for all different letters

We need 3 different letters from {C, A, L, U, S}. First choose 3 letters: C(5,3) = 10 ways. For each choice, count arrangements: if one letter appears twice in CALCULUS, we have 2 choices for that card; otherwise 1 choice. Let's enumerate: choosing {C,A,L}: 2×1×2=4 ways. Similarly for other combinations involving repeated letters.

Step 4 — Calculate systematically

Favorable outcomes (all different): After careful counting, there are 28 ways to choose 3 cards with all different letters.

Step 5 — Apply complement

P(at least two same) = 1 - 28/56 = 1 - 1/2 = 1/2

Answer: 1/2

2
With Replacement
The letters of CALCULUS are on cards. Two cards are chosen with replacement. What is the probability that they show the same letter?
Step 1 — Identify the difference

With replacement, each draw is independent and the total sample space is 8² = 64.

Step 2 — Calculate for each letter type

For letter C: P(both C) = (2/8)² = 4/64
For letter L: P(both L) = (2/8)² = 4/64
For letter U: P(both U) = (2/8)² = 4/64
For letter A: P(both A) = (1/8)² = 1/64
For letter S: P(both S) = (1/8)² = 1/64

Step 3 — Sum the probabilities

P(match) = 4/64 + 4/64 + 4/64 + 1/64 + 1/64 = 14/64 = 7/32

Step 4 — Verify

7/32 = 0.21875, which is higher than our without-replacement answer of 3/28 ≈ 0.107. This makes sense since replacement gives more opportunities for matches.

Answer: 7/32

3
Different Word
The letters of the word MISSISSIPPI are written on cards. Two cards are chosen at random without replacement. What is the probability they show the same letter?
Step 1 — Count letter frequencies

MISSISSIPPI has: M(1), I(4), S(4), P(2). Total = 11 cards.

Step 2 — Total possible pairs

C(11,2) = 11×10/2 = 55 ways to choose 2 cards.

Step 3 — Count matching pairs

From I: C(4,2) = 6 ways
From S: C(4,2) = 6 ways
From P: C(2,2) = 1 way
M appears once, so 0 ways.
Total: 6 + 6 + 1 = 13

Step 4 — Calculate probability

P(matching) = 13/55

Step 5 — Verify

13/55 ≈ 0.236 or about 23.6%. This is higher than CALCULUS because MISSISSIPPI has more repeated letters.

Answer: 13/55

4
Reverse Problem
A word has 6 letters, with some letters repeated. When 2 cards are drawn without replacement, the probability of a match is 1/5. If one letter appears 3 times and the others appear once each, what letter appears 3 times and how many distinct letters are there?
Step 1 — Set up the equation

Let the repeated letter appear 3 times, and there are n total distinct letters. Then there are 3 + (n-1) = n + 2 = 6 total cards, so n = 4 distinct letters.

Step 2 — Apply the given probability

Total ways to choose 2 from 6: C(6,2) = 15
Ways to get matching pairs: C(3,2) = 3 (from the repeated letter only)
So P(match) = 3/15 = 1/5

Step 3 — Verify the setup

We have 4 distinct letters total, with one appearing 3 times and three appearing once each: 3 + 1 + 1 + 1 = 6 cards total.

Step 4 — Answer the questions

The problem asks which letter appears 3 times, but we can only determine the structure: there are 4 distinct letters, with one of them appearing 3 times.

Answer: 4 distinct letters, with any one of them appearing 3 times

Frequently Asked Questions

Count the number of ways to choose pairs from each repeated letter separately. In this problem, C appears twice (giving 1 way to choose both), L appears twice (1 way), and U appears twice (1 way). Letters appearing only once cannot form matching pairs.
Without replacement means once a card is chosen, it cannot be chosen again. This affects the total number of possible outcomes. Here we use C(8,2) = 28 total ways to choose 2 cards from 8, rather than 8² = 64 if replacement were allowed.
To form a matching pair, you need at least two cards with the same letter. Letters like A and S in CALCULUS appear only once, so it's impossible to draw two cards showing these letters. Only C, L, and U can form matching pairs since they each appear twice.
NJ
Neven Jurkovic, PhD

Professor of Computer Science, Palo Alto College, Alamo Colleges District, San Antonio, TX

Developer of Algebrator

Contact

This solution was prepared with AI assistance and reviewed by Dr. Jurkovic for mathematical accuracy and pedagogical clarity.

2026-09-06